2021-08-27 01:24:29 +02:00
|
|
|
module.exports = {
|
2021-09-05 01:09:30 +02:00
|
|
|
setupFiles: ["./jest.setup.js"],
|
|
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
|
|
|
transform: {
|
|
|
|
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
|
|
|
|
},
|
2021-12-19 18:10:06 +01:00
|
|
|
testPathIgnorePatterns: [
|
|
|
|
'.cypress', 'node_modules', 'dist',
|
|
|
|
],
|
2021-09-05 01:09:30 +02:00
|
|
|
testEnvironment: "jsdom",
|
2022-01-19 16:51:36 +01: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-27 01:24:29 +02:00
|
|
|
};
|