2021-08-26 16:24:29 -07:00
|
|
|
module.exports = {
|
2021-09-04 19:09:30 -04:00
|
|
|
setupFiles: ["./jest.setup.js"],
|
|
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
|
|
|
transform: {
|
|
|
|
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
|
|
|
|
},
|
2021-12-19 12:10:06 -05: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: {
|
|
|
|
"\\.(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
|
|
|
};
|