setup-clojure/jest.config.js

13 lines
280 B
JavaScript
Raw Normal View History

2019-10-04 11:41:15 +02:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
2020-08-20 12:57:19 +02:00
testTimeout: 10000,
2019-10-04 11:41:15 +02:00
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}