mirror of
https://github.com/immich-app/immich.git
synced 2024-12-23 02:06:15 +02:00
23 lines
598 B
JSON
23 lines
598 B
JSON
{
|
|
"moduleFileExtensions": ["js", "json", "ts"],
|
|
"modulePaths": ["<rootDir>"],
|
|
"rootDir": "../..",
|
|
"globalSetup": "<rootDir>/e2e/jobs/setup.ts",
|
|
"testEnvironment": "node",
|
|
"testMatch": ["**/e2e/jobs/specs/*.e2e-spec.[tj]s"],
|
|
"testTimeout": 10000,
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"<rootDir>/src/**/*.(t|j)s",
|
|
"!<rootDir>/src/**/*.spec.(t|s)s",
|
|
"!<rootDir>/src/migrations/**"
|
|
],
|
|
"coverageDirectory": "./coverage",
|
|
"moduleNameMapper": {
|
|
"^test(|/.*)$": "<rootDir>/test/$1",
|
|
"^src(|/.*)$": "<rootDir>/src/$1"
|
|
}
|
|
}
|