mirror of
https://github.com/earthly/actions-setup.git
synced 2024-12-26 22:41:01 +08:00
16 lines
285 B
JavaScript
16 lines
285 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
collectCoverageFrom: ["src/**/*.ts"],
|
|
testPathIgnorePatterns: [
|
|
".*/dist/.*",
|
|
".*dist.*",
|
|
"/node_modules/(?!got)(.*)",
|
|
],
|
|
globals: {
|
|
"ts-jest": {
|
|
tsconfig: "tsconfig.json",
|
|
},
|
|
},
|
|
};
|