http-client/jest.config.js

10 lines
209 B
JavaScript
Raw Normal View History

2020-01-09 23:32:59 +00:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}