actions-setup/jest.config.js

16 lines
285 B
JavaScript
Raw Normal View History

2022-03-27 20:03:31 -07:00
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
collectCoverageFrom: ["src/**/*.ts"],
testPathIgnorePatterns: [
".*/dist/.*",
".*dist.*",
"/node_modules/(?!got)(.*)",
],
globals: {
"ts-jest": {
tsconfig: "tsconfig.json",
},
},
};