mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
20 lines
380 B
JavaScript
20 lines
380 B
JavaScript
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const base = require('../../jest.config');
|
|
|
|
module.exports = {
|
|
...base,
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.json',
|
|
},
|
|
},
|
|
coveragePathIgnorePatterns: [
|
|
'/Bootstrap/',
|
|
'/InversifyExpressUtils/',
|
|
'HealthCheckController'
|
|
],
|
|
setupFilesAfterEnv: [
|
|
'./test-setup.ts'
|
|
]
|
|
};
|