UNPKG

336 BJavaScriptView Raw
1module.exports = {
2 roots: ['<rootDir>/src', '<rootDir>/test'],
3 transform: {
4 '^.+\\.tsx?$': 'ts-jest',
5 "\\.liquid$": "jest-raw-loader",
6 },
7 testEnvironment: 'node',
8 coverageThreshold: {
9 global: {
10 branches: 70,
11 functions: 70,
12 lines: 70,
13 statements: 70,
14 },
15 },
16 collectCoverage: true,
17};