-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjest.config.ts
More file actions
32 lines (30 loc) · 837 Bytes
/
jest.config.ts
File metadata and controls
32 lines (30 loc) · 837 Bytes
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
import type { Config } from 'jest'
const config: Config = {
projects: [
{
displayName: 'legacy',
roots: ['<rootDir>/tests'],
setupFiles: ['<rootDir>/jest.setup.ts'],
transform: {
'^.+\\.(t|j)sx?$': ['babel-jest', { configFile: './babel.legacy.cjs' }],
},
testMatch: [
'<rootDir>/tests/**/*.legacy.test.ts',
'<rootDir>/tests/**/!(*.stage3|*.legacy).test.ts',
],
},
{
displayName: 'stage3',
roots: ['<rootDir>/tests'],
setupFiles: ['<rootDir>/jest.setup.ts'],
transform: {
'^.+\\.(t|j)sx?$': ['babel-jest', { configFile: './babel.stage3.cjs' }],
},
testMatch: [
'<rootDir>/tests/**/*.stage3.test.ts',
'<rootDir>/tests/**/!(*.stage3|*.legacy).test.ts',
],
},
],
}
export default config