12 lines
283 B
JavaScript
12 lines
283 B
JavaScript
// For a detailed explanation regarding each configuration property, visit:
|
|
// https://jestjs.io/docs/en/configuration.html
|
|
|
|
module.exports = {
|
|
clearMocks: true,
|
|
testEnvironment: "jest-environment-jsdom",
|
|
testPathIgnorePatterns: [
|
|
"/node_modules/",
|
|
"/example/"
|
|
],
|
|
};
|