@storybook/test 0.0.0-pr-28768-sha-9b4d61ce → 0.0.0-pr-28694-sha-b28ec221
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +34 -34
- package/dist/index.mjs +33 -33
- package/package.json +5 -5
package/README.md
CHANGED
@@ -21,8 +21,8 @@ The instrumentation makes sure you can debug those methods in the [addon-interac
|
|
21
21
|
|
22
22
|
```ts
|
23
23
|
// Button.stories.ts
|
24
|
+
import { expect, fn, userEvent, within } from '@storybook/test';
|
24
25
|
import { Button } from './Button';
|
25
|
-
import { within, userEvent, expect, fn } from '@storybook/test';
|
26
26
|
|
27
27
|
export default {
|
28
28
|
component: Button,
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { AsymmetricMatchersContaining, MatchersObject, MatcherState, JestAssertion, ExpectStatic } from '@vitest/expect';
|
2
1
|
import { TestingLibraryMatchers } from '@testing-library/jest-dom/matchers';
|
2
|
+
import { AsymmetricMatchersContaining, MatchersObject, MatcherState, JestAssertion, ExpectStatic } from '@vitest/expect';
|
3
3
|
import * as domTestingLibrary from '@testing-library/dom';
|
4
4
|
import _userEvent from '@testing-library/user-event';
|
5
5
|
import { spyOn as spyOn$1, Mock as Mock$1, MaybeMocked, MaybeMockedDeep, MaybePartiallyMocked, MaybePartiallyMockedDeep, MockInstance } from '@vitest/spy';
|