Files
ThunderCloud/jest.config.js
2021-08-29 13:41:34 -04:00

9 lines
157 B
JavaScript

module.exports = {
testEnvironment: 'node',
roots: ['<rootDir>/test'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.tsx?$': 'ts-jest'
}
};