mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
Fix some left-over references
This commit is contained in:
parent
3abe8a71af
commit
4405dc9ae6
@ -1,4 +1,4 @@
|
||||
import { expect, fn, userEvent, within } from '@storybook/test';
|
||||
import { expect, fn, userEvent, within } from 'storybook/test';
|
||||
|
||||
import type { StoryFn as CSF2Story, Meta, StoryObj } from '../..';
|
||||
import AddWrapperDecorator from './AddWrapperDecorator.svelte';
|
||||
|
@ -136,7 +136,7 @@ Type: `boolean`
|
||||
|
||||
Default: `false`
|
||||
|
||||
[Similar to Vitest](https://vitest.dev/config/#clearmocks), it will call `.mockClear()` on all spies created with `fn()` from `@storybook/test` when a story unmounts. This will clear mock history, but not reset its implementation to the default one.
|
||||
[Similar to Vitest](https://vitest.dev/config/#clearmocks), it will call `.mockClear()` on all spies created with `fn()` from `storybook/test` when a story unmounts. This will clear mock history, but not reset its implementation to the default one.
|
||||
|
||||
#### `mockReset`
|
||||
|
||||
@ -144,7 +144,7 @@ Type: `boolean`
|
||||
|
||||
Default: `false`
|
||||
|
||||
[Similar to Vitest](https://vitest.dev/config/#mockreset), it will call `.mockReset()` on all spies created with `fn()` from `@storybook/test` when a story unmounts. This will clear mock history and reset its implementation to an empty function (will return `undefined`).
|
||||
[Similar to Vitest](https://vitest.dev/config/#mockreset), it will call `.mockReset()` on all spies created with `fn()` from `storybook/test` when a story unmounts. This will clear mock history and reset its implementation to an empty function (will return `undefined`).
|
||||
|
||||
#### `restoreMocks`
|
||||
|
||||
@ -152,7 +152,7 @@ Type: `boolean`
|
||||
|
||||
Default: `true`
|
||||
|
||||
[Similar to Vitest](https://vitest.dev/config/#restoremocks), it will call `.restoreMocks()` on all spies created with `fn()` from `@storybook/test` when a story unmounts. This will clear mock history and reset its implementation to the original one.
|
||||
[Similar to Vitest](https://vitest.dev/config/#restoremocks), it will call `.restoreMocks()` on all spies created with `fn()` from `storybook/test` when a story unmounts. This will clear mock history and reset its implementation to the original one.
|
||||
|
||||
#### `dangerouslyIgnoreUnhandledErrors`
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user