1
0
Files
upload-artifact/jest.config.js
T

12 lines
281 B
JavaScript
Raw Normal View History

2020-03-13 14:44:44 +01:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}