mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:41:06 +08:00
18 lines
554 B
JavaScript
18 lines
554 B
JavaScript
module.exports = {
|
|
projects: [
|
|
'<rootDir>/addons/*',
|
|
'<rootDir>/frameworks/*',
|
|
'<rootDir>/lib/*',
|
|
'<rootDir>/builders/*',
|
|
'<rootDir>/renderers/*',
|
|
'<rootDir>/presets/*',
|
|
'<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'],
|
|
};
|