mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:51:05 +08:00
13 lines
366 B
JavaScript
13 lines
366 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
displayName: __dirname.split(path.sep).slice(-2).join(path.posix.sep),
|
|
preset: 'jest-preset-angular',
|
|
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
|
|
transformIgnorePatterns: ['/node_modules/(?!@angular|rxjs|nanoid|uuid)'],
|
|
snapshotFormat: {
|
|
escapeString: true,
|
|
printBasicPrototype: true,
|
|
},
|
|
};
|