14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
// jest.config.ts
|
|
|
|
export default {
|
|
preset: "ts-jest",
|
|
testEnvironment: "jest-environment-jsdom",
|
|
transform: {
|
|
"^.+\\.tsx?$": "ts-jest",
|
|
// process `*.tsx` files with `ts-jest`
|
|
},
|
|
moduleNameMapper: {
|
|
"\\.(gif|ttf|eot|svg|png)$": "<rootDir>/test/__ mocks __/fileMock.js",
|
|
},
|
|
};
|