1
0
Fork 0
toolkit/jest.config.js

11 lines
242 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:46:17 +00:00
}