mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-23 05:02:10 +08:00
14 lines
591 B
JavaScript
14 lines
591 B
JavaScript
module.exports = {
|
|
coveragePathIgnorePatterns: ['/jest-config/', '/node_modules/'],
|
|
preset: 'jest-preset-angular',
|
|
setupTestFrameworkScriptFile: './jest-config/setup.ts',
|
|
snapshotSerializers: [
|
|
'<rootDir>/../../node_modules/jest-preset-angular/AngularSnapshotSerializer.js',
|
|
'<rootDir>/../../node_modules/jest-preset-angular/HTMLCommentSerializer.js',
|
|
],
|
|
testPathIgnorePatterns: ['/node_modules/', '/storybook-static/', 'angularshots.test.js', 'dist'],
|
|
transform: {
|
|
'^.+\\.(ts|js|html)$': '<rootDir>/../../node_modules/jest-preset-angular/preprocessor.js',
|
|
},
|
|
};
|