mirror of
https://github.com/Discreetly/server.git
synced 2026-01-07 19:53:55 -05:00
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testTimeout: 10000,
|
|
setupFiles: ["<rootDir>/tests/setEnvVars.ts"],
|
|
"transform": {
|
|
"^.+\\.test.ts$": ["ts-jest", { tsconfig: "./tsconfig.tests.json" }]
|
|
},
|
|
testPathIgnorePatterns: ['dist/'],
|
|
}
|