-
Notifications
You must be signed in to change notification settings - Fork 224
/
jest.config.js
81 lines (76 loc) · 2.28 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
const { jestDirAlias } = require('./dirAlias');
const unitTests = {
preset: 'ts-jest',
setupFiles: ['./src/testHelpers/jest-setup.js'],
setupFilesAfterEnv: ['./src/testHelpers/setupTests.js'],
moduleNameMapper: jestDirAlias,
testEnvironment: 'jsdom',
snapshotSerializers: ['@emotion/jest/serializer'],
transform: {
'^.+\\.[tj]sx?$': 'babel-jest',
},
displayName: 'Unit Tests',
collectCoverageFrom: [
'**/(src|scripts)/**/*.{js,jsx,ts,tsx}',
'!**/src/testHelpers/**',
'!**/*.stories.jsx',
'!**/*.stories.tsx',
'!**/src/integration/!(utils)/**/*',
],
testMatch: [
'**/__tests__/**/*.{js,jsx,ts,tsx}',
'**/?(*.)+(spec|test).{js,jsx,ts,tsx}',
'!**/src/integration/!(utils)/**/*',
],
};
const ampIntegrationTests = {
displayName: 'Integration Tests - AMP',
testEnvironment: './src/integration/integrationTestEnvironment.js',
testEnvironmentOptions: {
platform: 'amp',
},
setupFilesAfterEnv: ['./src/testHelpers/setupTests.js'],
testMatch: ['**/src/integration/!(utils)/**/*.test.js'],
testPathIgnorePatterns: ['.*lite\\.test\\.js$', '.*canonical\\.test\\.js$'],
};
const canonicalIntegrationTests = {
displayName: 'Integration Tests - Canonical',
testEnvironment: './src/integration/integrationTestEnvironment.js',
testEnvironmentOptions: {
platform: 'canonical',
},
setupFilesAfterEnv: ['./src/testHelpers/setupTests.js'],
testMatch: ['**/src/integration/!(utils)/**/*.test.js'],
testPathIgnorePatterns: ['.*lite\\.test\\.js$', '.*amp\\.test\\.js$'],
};
const liteIntegrationTests = {
displayName: 'Integration Tests - Lite',
testEnvironment: './src/integration/integrationTestEnvironment.js',
testEnvironmentOptions: {
platform: 'lite',
},
setupFilesAfterEnv: ['./src/testHelpers/setupTests.js'],
testMatch: ['**/src/integration/!(utils)/**/*.test.js'],
testPathIgnorePatterns: ['.*canonical\\.test\\.js$', '.*amp\\.test\\.js$'],
};
module.exports = {
projects: [
unitTests,
ampIntegrationTests,
canonicalIntegrationTests,
liteIntegrationTests,
],
reporters: [
'default',
[
'jest-junit',
{
suiteName: 'Jest Tests',
outputDirectory: 'reports/jest',
uniqueOutputName: 'true',
ancestorSeparator: ' › ',
},
],
],
timers: 'modern',
};