UNPKG

399 BJavaScriptView Raw
1module.exports = {
2 coverageDirectory: 'coverage',
3 coveragePathIgnorePatterns: ['/node_modules/', 'test'],
4 collectCoverageFrom: ['src/**/*.{js,ts}'],
5
6 moduleFileExtensions: ['js', 'ts'],
7
8 preset: 'jest-puppeteer',
9
10 testPathIgnorePatterns: ['/node_modules/'],
11 testRegex: '(/tests/.*\\.test|\\.(test|spec))\\.(ts|tsx|js)$',
12 testTimeout: 120000,
13
14 setupFiles: ['./src/setup/jest.ts']
15}