module.exports = { testEnvironment: "node", testMatch: ["**/tests/**/*.test.js"], clearMocks: true, testTimeout: 10000, verbose: true, collectCoverage: true, coverageDirectory: "coverage", coverageReporters: [ "text", "lcov", "html" ], reporters: [ "default", [ "jest-junit", { outputDirectory: "./test-results", outputName: "junit.xml" } ] ], testPathIgnorePatterns: ["/node_modules/"] };