14 lines
416 B
JavaScript
14 lines
416 B
JavaScript
export default {
|
|
clearMocks: true,
|
|
transform: {},
|
|
testEnvironment: "jsdom",
|
|
coverageProvider: "v8",
|
|
setupFiles: ["<rootDir>/tests/setup.jest.js"],
|
|
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
modulePathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
coveragePathIgnorePatterns: [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/tests/E2E/",
|
|
],
|
|
};
|