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

12 lines
281 B
JavaScript
Raw Permalink Normal View History

2020-04-28 17:18:53 +02: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
}