mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 13:38:51 +00:00
12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
export default {
|
|
testEnvironment: "jsdom",
|
|
transform: {
|
|
"^.+\\.tsx?$": "ts-jest",
|
|
},
|
|
moduleNameMapper: {
|
|
"\\.(gif|ttf|eot|svg|png)$": "<rootDir>/test/__mocks__/fileMock.ts",
|
|
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
|
|
},
|
|
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
|
|
};
|