forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
98 lines (96 loc) · 3.42 KB
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const os = require('os');
module.exports = {
cacheDirectory: '.cache/jest',
clearMocks: true,
moduleNameMapper: {
// non-js files
'\\.(jpg|jpeg|png|apng|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/__mocks__/fileMock.js',
'\\.(css|scss|stylesheet)$': '<rootDir>/__mocks__/styleMock.js',
'\\.(md)$': '<rootDir>/__mocks__/htmlMock.js',
// core-js v2 to v3 mapping
'core-js/modules/es6.(.*)': 'core-js/modules/es.$1',
'core-js/modules/es7.(.*)': 'core-js/modules/esnext.$1',
'core-js/library/fn/(.*)': `core-js/features/$1`,
'core-js/es5/(.*)': `core-js/es/$1`,
'core-js/es6/(.*)': `core-js/es/$1`,
'core-js/es7/reflect': `core-js/proposals/reflect-metadata`,
'core-js/es7/(.*)': `core-js/proposals/$1`,
'core-js/object$/': `core-js/es/object`,
'core-js/object/(.*)': `core-js/es/object/$1`,
'babel-runtime/core-js/(.*)': `core-js/es/$1`,
// 'babel-runtime/core-js/object/assign'
'core-js/library/fn/object/assign': 'core-js/es/object/assign',
},
projects: [
'<rootDir>',
'<rootDir>/app/angular',
'<rootDir>/examples/cra-kitchen-sink',
'<rootDir>/examples/cra-ts-kitchen-sink',
'<rootDir>/examples/html-kitchen-sink',
'<rootDir>/examples/svelte-kitchen-sink',
'<rootDir>/examples/vue-kitchen-sink',
'<rootDir>/examples/angular-cli',
'<rootDir>/examples/preact-kitchen-sink',
// This is explicitly commented out because having vue 2 & 3 in the
// dependency graph makes it impossible to run storyshots on both examples
// '<rootDir>/examples/vue-3-cli',
],
roots: [
'<rootDir>/addons',
'<rootDir>/app',
'<rootDir>/lib',
'<rootDir>/examples/official-storybook',
'<rootDir>/examples/react-ts',
],
transform: {
'^.+\\.stories\\.[jt]sx?$': '@storybook/addon-storyshots/injectFileName',
'^.+\\.[jt]sx?$': '<rootDir>/scripts/utils/jest-transform-js.js',
'^.+\\.mdx$': '@storybook/addon-docs/jest-transform-mdx',
},
transformIgnorePatterns: ['/node_modules/(?!lit-html).+\\.js'],
testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
testPathIgnorePatterns: [
'/node_modules/',
'/dist/',
'/prebuilt/',
'addon-jest.test.js',
'/app/angular/*',
'/examples/cra-kitchen-sink/src/*',
'/examples/cra-react15/src/*',
'/examples/cra-ts-kitchen-sink/src/components/*',
'/examples/angular-cli/src/app/*',
],
collectCoverage: false,
collectCoverageFrom: [
'app/**/*.{js,jsx,ts,tsx}',
'lib/**/*.{js,jsx,ts,tsx}',
'addons/**/*.{js,jsx,ts,tsx}',
],
coveragePathIgnorePatterns: [
'/node_modules/',
'/cli/test/',
'/dist/',
'/prebuilt/',
'/generators/',
'/dll/',
'/__mocks__ /',
'/__testfixtures__/',
'^.*\\.stories\\.[jt]sx?$',
],
globals: {
DOCS_MODE: false,
PREVIEW_URL: undefined,
SNAPSHOT_OS: os.platform() === 'win32' ? 'windows' : 'posix',
},
snapshotSerializers: ['jest-emotion', 'enzyme-to-json/serializer', 'jest-serializer-html'],
coverageDirectory: 'coverage',
setupFilesAfterEnv: ['./scripts/jest.init.ts'],
coverageReporters: ['lcov'],
testEnvironment: 'jest-environment-jsdom-thirteen',
setupFiles: ['raf/polyfill'],
testURL: 'http://localhost',
modulePathIgnorePatterns: ['/dist/.*/__mocks__/'],
moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx', 'json', 'node'],
watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'],
};