-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest-e2e.json
25 lines (25 loc) · 878 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
{
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": "./src",
"modulePaths": ["<rootDir>"],
"moduleNameMapper": {
"^@shared(.*)$": "<rootDir>/components/shared$1",
"^@components(.*)$": "<rootDir>/components$1",
"^@filters(.*)$": "<rootDir>/filters$1",
"^@guards(.*)$": "<rootDir>/guards$1",
"^@interfaces(.*)$": "<rootDir>/interfaces$1",
"^@pipes(.*)$": "<rootDir>/pipes$1",
"^@dto(.*)$": "<rootDir>/dto$1",
"^@responses(.*)$": "<rootDir>/responses$1",
"^@interceptors(.*)$": "<rootDir>/interceptors$1",
"^@decorators(.*)$": "<rootDir>/decorators$1",
"^@exceptions(.*)$": "<rootDir>/exceptions/v1$1",
"^@helpers(.*)$": "<rootDir>/helpers/$1"
},
"testEnvironment": "node",
"testRegex": ".e2e-spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": ["<rootDir>/node_modules/"]
}