mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
ea64fdd7b4
* Add testcontainers to e2e * Run e2e tests in github without docker * Run lint on e2e * Cleaner setup ordering * Rename setup file
18 lines
488 B
JSON
18 lines
488 B
JSON
{
|
|
"moduleFileExtensions": ["js", "json", "ts"],
|
|
"modulePaths": ["<rootDir>"],
|
|
"rootDir": ".",
|
|
"globalSetup": "<rootDir>/e2e/setup.ts",
|
|
"testEnvironment": "node",
|
|
"testRegex": ".e2e-spec.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"moduleNameMapper": {
|
|
"^@test(|/.*)$": "<rootDir>/test/$1",
|
|
"^@app/immich(|/.*)$": "<rootDir>/src/immich/$1",
|
|
"^@app/infra(|/.*)$": "<rootDir>/src/infra/$1",
|
|
"^@app/domain(|/.*)$": "<rootDir>/src/domain/$1"
|
|
}
|
|
}
|