Files
toolkit/jest.config.js
Salman Muin Kayser Chishti a3588a70ba update hash files test
2025-11-18 14:21:47 +00:00

12 lines
301 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>/packages'],
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
'^.+\\.ts$': ['ts-jest', {isolatedModules: true, diagnostics: {warnOnly: true}}]
},
verbose: true
}