All checks were successful
THE-TIP-TOP-MULTIBRANCH/pipeline/head This commit looks good
34 lines
480 B
JavaScript
34 lines
480 B
JavaScript
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/"]
|
|
};
|