Foris JS library is a set of components and utils for reForis and plugins.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
foris-js/jest.config.js

27 lines
734 B

/*
* 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',
},
};