-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
51 lines (41 loc) · 1.18 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
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
export default {
bail: !process.argv.includes('--selectProjects') ? 10 : process.argv.includes('lint') ? 0 : 1,
reporters: process.argv.includes('test')
? ['default']
: [['jest-silent-reporter', { showWarnings: true }]],
clearMocks: true,
collectCoverage: true,
coverageReporters: ['lcov'],
collectCoverageFrom: ['./src/**/*.{js,jsx,ts,tsx}'],
coverageDirectory: 'coverage',
coverageProvider: 'v8',
projects: [
{
displayName: 'test',
rootDir: '<rootDir>',
// setupFiles: [],
setupFilesAfterEnv: ['<rootDir>/tests/setupTests.ts'],
slowTestThreshold: 5,
// snapshotSerializers: [],
testEnvironment: 'jsdom',
moduleNameMapper: { '^@/(.*)$': '<rootDir>/src/$1' },
transform: {
'^.+\\.(tsx|ts)?$': 'esbuild-jest',
},
},
{
displayName: 'lint',
runner: 'eslint',
rootDir: '.',
testMatch: ['**/*.[jt]s?(x)'],
testPathIgnorePatterns: ['/coverage/', '/public/'],
transform: {
'^.+\\.(tsx|ts)?$': 'esbuild-jest',
},
},
],
};