-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.ts
More file actions
31 lines (31 loc) · 815 Bytes
/
jest.config.ts
File metadata and controls
31 lines (31 loc) · 815 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
const config = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/test/**/*.+(ts|tsx)', '**/src/**/(*.)+(spec|test).+(ts|tsx)'],
collectCoverageFrom: [
'**/src/*.{ts,tsx}',
'!**/node_modules/**',
'!**/vendor/**',
'!**/dist/**'
],
moduleDirectories: ['node_modules', 'src'],
transformIgnorePatterns: [
'node_modules/(?!@actions)'
],
moduleNameMapper: {
'^@actions/http-client$': '<rootDir>/node_modules/@actions/http-client/lib/index.js'
},
transform: {
'^.+\\.tsx?$': ['ts-jest', {
useESM: false,
tsconfig: {
esModuleInterop: true,
allowSyntheticDefaultImports: true
}
}],
'^.+\\.jsx?$': ['ts-jest', {
useESM: false
}]
}
}
export default config