mirror-noury.li/cdk/jest.config.js

9 lines
157 B
JavaScript
Raw Normal View History

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