Some checks failed
CI/CD Pipeline - Xpeditis PreProd / Backend - Build & Test (push) Failing after 5m34s
CI/CD Pipeline - Xpeditis PreProd / Backend - Docker Build & Push (push) Has been skipped
CI/CD Pipeline - Xpeditis PreProd / Frontend - Build & Test (push) Failing after 5m45s
CI/CD Pipeline - Xpeditis PreProd / Frontend - Docker Build & Push (push) Has been skipped
CI/CD Pipeline - Xpeditis PreProd / Deploy to PreProd Server (push) Has been skipped
CI/CD Pipeline - Xpeditis PreProd / Run Smoke Tests (push) Has been skipped
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"]
|
|
}
|