Files
toolkit/jest.config.js
T

12 lines
242 B
JavaScript
Raw Normal View History

2019-04-19 15:15:34 -04:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>/packages'],
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
2024-01-09 19:03:41 +00:00
verbose: tru
2024-01-09 18:55:50 +00:00
}