mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:41:06 +08:00
Fix test
This commit is contained in:
parent
9ea6411394
commit
2ab2e6edf4
@ -62,9 +62,9 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jscodeshift": "^0.11.6",
|
||||
"ansi-regex": "^5.0.1",
|
||||
"jest": "^29.3.1",
|
||||
"jest-specific-snapshot": "^7.0.0",
|
||||
"strip-ansi": "^7.0.1",
|
||||
"typescript": "~4.9.3"
|
||||
},
|
||||
"publishConfig": {
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { describe, it, expect } from '@jest/globals';
|
||||
import { dedent } from 'ts-dedent';
|
||||
import type { API } from 'jscodeshift';
|
||||
import stripAnsi from 'strip-ansi';
|
||||
import ansiRegex from 'ansi-regex';
|
||||
import _transform from '../csf-2-to-3';
|
||||
|
||||
expect.addSnapshotSerializer({
|
||||
@ -219,7 +219,7 @@ describe('csf-2-to-3', () => {
|
||||
describe('typescript', () => {
|
||||
it('should error with namespace imports', () => {
|
||||
expect.addSnapshotSerializer({
|
||||
serialize: (value) => stripAnsi(value),
|
||||
serialize: (value) => value.replace(ansiRegex(), ''),
|
||||
test: () => true,
|
||||
});
|
||||
expect(() =>
|
||||
@ -233,13 +233,13 @@ describe('csf-2-to-3', () => {
|
||||
export const A: SB.StoryFn<CatProps> = () => <Cat />;
|
||||
`)
|
||||
).toThrowErrorMatchingInlineSnapshot(`
|
||||
"This codemod does not support namespace imports for a @storybook/react package.
|
||||
This codemod does not support namespace imports for a @storybook/react package.
|
||||
Replace the namespace import with named imports and try again.
|
||||
> 1 | import * as SB from '@storybook/react';
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
2 | import { CatProps } from './Cat';
|
||||
3 |
|
||||
4 | const meta = { title: 'Cat', component: Cat } as Meta<CatProps>"
|
||||
4 | const meta = { title: 'Cat', component: Cat } as Meta<CatProps>
|
||||
`);
|
||||
});
|
||||
it('should keep local names', () => {
|
||||
|
@ -6339,6 +6339,7 @@ __metadata:
|
||||
"@storybook/node-logger": 7.0.0-beta.26
|
||||
"@storybook/types": 7.0.0-beta.26
|
||||
"@types/jscodeshift": ^0.11.6
|
||||
ansi-regex: ^5.0.1
|
||||
cross-spawn: ^7.0.3
|
||||
globby: ^11.0.2
|
||||
jest: ^29.3.1
|
||||
@ -6347,7 +6348,6 @@ __metadata:
|
||||
lodash: ^4.17.21
|
||||
prettier: ^2.8.0
|
||||
recast: ^0.23.1
|
||||
strip-ansi: ^7.0.1
|
||||
typescript: ~4.9.3
|
||||
util: ^0.12.4
|
||||
languageName: unknown
|
||||
|
Loading…
x
Reference in New Issue
Block a user