2021-08-26 16:24:29 -07:00
|
|
|
module.exports = {
|
2021-09-04 19:09:30 -04:00
|
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
|
|
|
transform: {
|
|
|
|
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
|
|
|
|
},
|
2022-04-06 19:30:08 -04:00
|
|
|
testPathIgnorePatterns: [".cypress", "node_modules", "dist"],
|
2021-09-04 19:09:30 -04:00
|
|
|
testEnvironment: "jsdom",
|
2022-01-19 10:51:36 -05:00
|
|
|
moduleNameMapper: {
|
2022-04-06 19:30:08 -04:00
|
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
|
|
|
|
"<rootDir>/test/__mocks__/fileMock.js",
|
|
|
|
"\\.(css|less)$": "<rootDir>/test/__mocks__/styleMock.js",
|
|
|
|
},
|
2021-08-26 16:24:29 -07:00
|
|
|
};
|