storybook/code/jest.config.js

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'],
};