mirror of https://github.com/immich-app/immich.git
chore: migrate CLI to ESM and vitest (#6777)
* chore: migrate CLI to ESM and vitest * fix lint * update github workflow * formatpull/6782/head
parent
1bfef200a5
commit
9c7dee8551
File diff suppressed because it is too large
Load Diff
@ -1,24 +0,0 @@
|
|||||||
{
|
|
||||||
"moduleFileExtensions": ["js", "json", "ts"],
|
|
||||||
"modulePaths": ["<rootDir>"],
|
|
||||||
"rootDir": "../..",
|
|
||||||
"globalSetup": "<rootDir>/test/e2e/setup.ts",
|
|
||||||
"testEnvironment": "node",
|
|
||||||
"testRegex": ".e2e-spec.ts$",
|
|
||||||
"testTimeout": 6000000,
|
|
||||||
"transform": {
|
|
||||||
"^.+\\.ts$": "ts-jest"
|
|
||||||
},
|
|
||||||
"collectCoverageFrom": [
|
|
||||||
"<rootDir>/src/**/*.(t|j)s",
|
|
||||||
"!<rootDir>/src/**/*.spec.(t|s)s",
|
|
||||||
"!<rootDir>/src/infra/migrations/**"
|
|
||||||
],
|
|
||||||
"coverageDirectory": "./coverage",
|
|
||||||
"moduleNameMapper": {
|
|
||||||
"^@test(|/.*)$": "<rootDir>../server/test/$1",
|
|
||||||
"^@app/immich(|/.*)$": "<rootDir>../server/src/immich/$1",
|
|
||||||
"^@app/infra(|/.*)$": "<rootDir>../server/src/infra/$1",
|
|
||||||
"^@app/domain(|/.*)$": "<rootDir>/../server/src/domain/$1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
import { defineConfig } from 'vitest/config';
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'@test-utils': new URL('../../../server/dist/test-utils/utils.js', import.meta.url).pathname,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
test: {
|
||||||
|
include: ['**/*.e2e-spec.ts'],
|
||||||
|
globals: true,
|
||||||
|
globalSetup: 'test/e2e/setup.ts',
|
||||||
|
pool: 'forks',
|
||||||
|
poolOptions: {
|
||||||
|
forks: {
|
||||||
|
maxForks: 1,
|
||||||
|
minForks: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
testTimeout: 10000,
|
||||||
|
},
|
||||||
|
});
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
import { defineConfig } from 'vitest/config';
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
test: {
|
||||||
|
globals: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
Loading…
Reference in New Issue