1
0
Fork 0
toolkit/jest.config.js

12 lines
243 B
JavaScript
Raw Normal View History

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>/packages'],
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
2024-01-09 19:05:11 +00:00
verbose: true
2024-01-09 19:47:02 +00:00
}