mirror of
https://github.com/rive-app/rive-react.git
synced 2026-03-13 08:22:30 +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",
|
|
},
|
|
},
|
|
};
|