actions-setup/jest.config.js
Kevin Schoonover 308be41af1 add jest config
2022-03-27 20:03:31 -07:00

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",
},
},
};