10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
roots: ['<rootDir>/test'],
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest'
|
|
},
|
|
setupFilesAfterEnv: ['aws-cdk-lib/testhelpers/jest-autoclean']
|
|
};
|