Some checks are pending
CD Production (Hetzner k3s) / Promote Images (preprod → prod) (push) Waiting to run
CD Production (Hetzner k3s) / Deploy to k3s (xpeditis-prod) (push) Blocked by required conditions
CD Production (Hetzner k3s) / Smoke Tests (push) Blocked by required conditions
CD Production (Hetzner k3s) / Deployment Summary (push) Blocked by required conditions
CD Production (Hetzner k3s) / Notify Success (push) Blocked by required conditions
CD Production (Hetzner k3s) / Notify Failure (push) Blocked by required conditions
Aligns main with the complete application codebase (cicd branch). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
839 B
JSON
29 lines
839 B
JSON
{
|
|
"moduleFileExtensions": ["js", "json", "ts"],
|
|
"rootDir": "../",
|
|
"testMatch": ["**/test/integration/**/*.spec.ts"],
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": [
|
|
"ts-jest",
|
|
{
|
|
"tsconfig": "tsconfig.test.json"
|
|
}
|
|
]
|
|
},
|
|
"collectCoverageFrom": [
|
|
"src/infrastructure/**/*.(t|j)s",
|
|
"!src/infrastructure/**/*.module.(t|j)s",
|
|
"!src/infrastructure/**/index.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage/integration",
|
|
"testEnvironment": "node",
|
|
"moduleNameMapper": {
|
|
"^@domain/(.*)$": "<rootDir>/src/domain/$1",
|
|
"@application/(.*)$": "<rootDir>/src/application/$1",
|
|
"^@infrastructure/(.*)$": "<rootDir>/src/infrastructure/$1"
|
|
},
|
|
"transformIgnorePatterns": ["node_modules/(?!(@faker-js)/)"],
|
|
"testTimeout": 30000,
|
|
"setupFilesAfterEnv": ["<rootDir>/test/setup-integration.ts"]
|
|
}
|