UNPKG

393 BJavaScriptView Raw
1module.exports = {
2 roots: ['<rootDir>/lib/', '<rootDir>/test/'],
3 testMatch: ['**/test/slow/**/*-test.ts'],
4 setupTestFrameworkScriptFile: '<rootDir>/test/slow-setup.ts',
5 collectCoverageFrom: ['lib/**/*.{js,ts}', '!**/node_modules/**', '!**/index.ts'],
6 coverageReporters: ['text-summary', 'json'],
7 globals: {
8 'ts-jest': {
9 babelConfig: true
10 }
11 },
12 preset: 'ts-jest'
13}