mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-12 11:41:14 +00:00
24 lines
No EOL
594 B
JavaScript
24 lines
No EOL
594 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
collectCoverage: true,
|
|
coverageDirectory: "coverage",
|
|
coveragePathIgnorePatterns: ["/node_modules/"],
|
|
coverageReporters: ["json", "lcov", "text", "clover"],
|
|
moduleFileExtensions: ['js', 'ts', 'json', 'node'],
|
|
testEnvironment: "jest-environment-node",
|
|
testMatch: ["**/__tests__/**/*.test.ts"],
|
|
transform: {
|
|
"^.+\\.ts$": ["@swc/jest", {
|
|
jsc: {
|
|
parser: {
|
|
syntax: "typescript",
|
|
tsx: false
|
|
},
|
|
target: "es2022"
|
|
}
|
|
}]
|
|
},
|
|
verbose: true,
|
|
testTimeout: 10000,
|
|
maxWorkers: "50%"
|
|
} |