-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathjest-e2e.json
32 lines (32 loc) · 958 Bytes
/
jest-e2e.json
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
{
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".e2e-spec.ts$",
"transform": {
"^.+\\.(t|j)s?$": ["@swc/jest"]
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"@filters(.*)": "<rootDir>/src/filters/$1",
"@guards(.*)": "<rootDir>/src/guards/$1",
"@pipes(.*)": "<rootDir>/src/pipes/$1",
"@interceptors(.*)": "<rootDir>/src/interceptors/$1",
"@interfaces(.*)": "<rootDir>/src/interfaces/$1",
"@decorators(.*)": "<rootDir>/src/decorators/$1",
"@tests(.*)": "<rootDir>/src/tests/$1",
"@modules(.*)": "<rootDir>/src/modules/$1",
"@config(.*)": "<rootDir>/src/config/$1",
"@providers(.*)": "<rootDir>/src/providers/$1",
"@helpers(.*)": "<rootDir>/src/helpers/$1",
"@types(.*)": "<rootDir>/src/types/$1",
"@constants(.*)": "<rootDir>/src/constants/$1"
}
}