This commit is contained in:
Kasper Peulen 2023-01-13 21:26:47 +01:00
parent 9ea6411394
commit 2ab2e6edf4
3 changed files with 6 additions and 6 deletions

View File

@ -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": {

View File

@ -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', () => {

View File

@ -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