dockerhub-description/jest.config.js

12 lines
236 B
JavaScript
Raw Normal View History

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