jb-api-aws/jest.config.js
2026-01-08 16:47:33 -06:00

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']
};