1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2025-09-14 01:22:14 +02:00

Extract the library from reforis.

This commit is contained in:
Bogdan Bodnar
2019-08-21 17:04:26 +02:00
commit 02ca27e49c
8 changed files with 12891 additions and 0 deletions

27
jest.config.js Normal file
View File

@@ -0,0 +1,27 @@
/*
* 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/',
],
clearMocks: true,
collectCoverageFrom: ['src/**/*.{js,jsx}'],
coverageDirectory: 'coverage',
testPathIgnorePatterns: ['/node_modules/', '/__fixtures__/'],
verbose: false,
setupFilesAfterEnv: [
'@testing-library/react/cleanup-after-each',
'<rootDir>/src/testUtils/setupTest',
],
globals: {
TZ: 'utc',
},
};