1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-06-28 20:03:59 +00:00
foris-js/jest.config.js

32 lines
906 B
JavaScript
Raw Normal View History

2019-08-21 15:04:26 +00:00
/*
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
*
* This is free software, licensed under the GNU General Public License v3.
* See /LICENSE for more information.
*/
// https://jestjs.io/docs/en/configuration.html
module.exports = {
moduleDirectories: [
2019-08-27 13:28:29 +00:00
"node_modules",
"<rootDir>/src/testUtils",
"<rootDir>/src/",
2019-08-21 15:04:26 +00:00
],
moduleNameMapper: {
"\\.(css|less)$": "<rootDir>/src/__mocks__/styleMock.js",
},
2019-08-21 15:04:26 +00:00
clearMocks: true,
2019-08-27 13:28:29 +00:00
collectCoverageFrom: ["src/**/*.{js,jsx}"],
coverageDirectory: "coverage",
2020-01-09 10:25:29 +00:00
testPathIgnorePatterns: ["/node_modules/", "/__fixtures__/", "/dist/"],
2019-08-21 15:04:26 +00:00
verbose: false,
setupFilesAfterEnv: [
2019-08-27 13:28:29 +00:00
"@testing-library/react/cleanup-after-each",
"<rootDir>/src/testUtils/setup",
2019-08-21 15:04:26 +00:00
],
globals: {
2019-08-27 13:28:29 +00:00
TZ: "utc",
2019-08-21 15:04:26 +00:00
},
2020-08-18 13:39:00 +00:00
transformIgnorePatterns: ["node_modules/(?!(react-datetime)/)"],
2019-08-21 15:04:26 +00:00
};