Files
first-interaction/jest.config.js
T
Danny McCormick a10eefa292 Initial commit
2019-08-02 17:15:36 +00: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
}