quasqui
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
22 lines (21 loc) • 537 B
JavaScript
module.exports = {
globals: {
'ts-jest': {
tsconfig: './tsconfig.json',
},
},
transform: {
'^.+.tsx?$': 'ts-jest',
},
testEnvironment: 'node',
testRegex: '__tests__\\/.+\\.test.ts$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
coverageReporters: ['json', 'json-summary', 'lcov', 'text', 'clover'],
collectCoverageFrom: ['src/*.ts'],
watchPlugins: [
// 'jest-watch-typeahead/filename',
// 'jest-watch-typeahead/testname',
],
verbose: false,
testTimeout: 60000,
};