-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.ts
More file actions
31 lines (30 loc) · 776 Bytes
/
jest.config.ts
File metadata and controls
31 lines (30 loc) · 776 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
/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/configuration
*/
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
clearMocks: true,
collectCoverage: true,
collectCoverageFrom: ['<rootDir>/src/**/*.ts'],
coverageDirectory: 'coverage',
coveragePathIgnorePatterns: [
'/node_modules/',
'global.d.ts',
'src/alpine.ts'
],
coverageProvider: 'v8',
moduleNameMapper: {
'@/(.*)$': '<rootDir>/src/$1',
'@tests/(.*)$': '<rootDir>/tests/$1'
},
preset: 'ts-jest',
roots: [
'<rootDir>',
'tests',
'src'
],
setupFilesAfterEnv: ['jest-extended/all'],
testEnvironment: 'jsdom',
testMatch: ['<rootDir>/tests/**/*.spec.ts']
}