mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
16 lines
509 B
JavaScript
16 lines
509 B
JavaScript
module.exports = {
|
|
projects: [
|
|
'<rootDir>/addons/*',
|
|
'<rootDir>/frameworks/!(angular)*',
|
|
'<rootDir>/lib/*',
|
|
'<rootDir>/renderers/*',
|
|
'<rootDir>/ui/!(node_modules)*',
|
|
],
|
|
collectCoverage: false,
|
|
collectCoverageFrom: ['**/src/**/*.{js,jsx,ts,tsx}', '!**/e2e-tests/**', '!**/node_modules/**'],
|
|
coverageDirectory: 'coverage',
|
|
coverageReporters: ['lcov'],
|
|
reporters: ['default', 'jest-junit'],
|
|
watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'],
|
|
};
|