mirror of
https://github.com/rive-app/rive-react.git
synced 2025-12-19 01:30:08 +08:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testRegex: '/test/.*\\.test\\.tsx$',
|
|
setupFilesAfterEnv: ['<rootDir>/setupTests.ts'],
|
|
testEnvironment: 'jsdom',
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.test.json',
|
|
},
|
|
},
|
|
};
|