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

35 lines
927 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
],
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
},
2019-10-07 15:16:27 +00:00
transform: {
"^.+\\.js$": "babel-jest",
"^.+\\.css$": "jest-transform-css",
},
2020-01-09 10:25:29 +00:00
transformIgnorePatterns: [
"node_modules/(?!(react-datetime)/)",
],
2019-08-21 15:04:26 +00:00
};