Files
julia-processcoverage/jest.config.js
David Anthoff 4c62666e81 Initial commit
2020-03-23 10:37:00 -07:00

11 lines
235 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}