fix(addon-storyshots): Remove excess slashes from jest transform warning

It's printing all of them, so I copied all of them, and that didn't work!
This commit is contained in:
Callum Macrae 2020-01-23 16:15:18 +00:00 committed by GitHub
parent 96037ad718
commit 963ed75800
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ export class Stories2SnapsConverter {
To fix it, add following to your jest.config.js:
transform: {
// should be above any other js transform like babel-jest
'^.+\\\\.stories\\\\.js$': '@storybook/addon-storyshots/injectFileName',
'^.+\\.stories\\.js$': '@storybook/addon-storyshots/injectFileName',
}
`
);