mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-11-14 17:35:35 +01:00
33 lines
936 B
JavaScript
33 lines
936 B
JavaScript
/*
|
|
* 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: [
|
|
"node_modules",
|
|
"<rootDir>/src/testUtils",
|
|
"<rootDir>/src/",
|
|
],
|
|
moduleNameMapper: {
|
|
"\\.(css|less)$": "<rootDir>/src/__mocks__/styleMock.js",
|
|
},
|
|
clearMocks: true,
|
|
collectCoverageFrom: ["src/**/*.{js,jsx}"],
|
|
coverageDirectory: "coverage",
|
|
testPathIgnorePatterns: ["/node_modules/", "/__fixtures__/", "/dist/"],
|
|
testEnvironment: "jsdom",
|
|
verbose: false,
|
|
setupFilesAfterEnv: [
|
|
"@testing-library/react/cleanup-after-each",
|
|
"<rootDir>/src/testUtils/setup",
|
|
],
|
|
globals: {
|
|
TZ: "utc",
|
|
},
|
|
transformIgnorePatterns: ["node_modules/(?!(react-datetime)/)"],
|
|
};
|