mirror-noury.li/cdk/jest.config.js
2023-10-29 01:45:03 +02:00

8 lines
157 B
JavaScript

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