Skip to content

Commit

Permalink
fix: jest config
Browse files Browse the repository at this point in the history
  • Loading branch information
Niraj-Kamdar committed Sep 28, 2023
1 parent ee8891d commit f66b101
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@ module.exports = {
collectCoverage: false,
preset: "ts-jest",
testEnvironment: "node",
testMatch: ["**/__tests__/e2e/**/?(*.)+(spec|test).[jt]s?(x)"],
modulePathIgnorePatterns: [
"./src/__tests__/mutation",
"./src/__tests__/query",
"./src/__tests__/utils",
],
testMatch: ["**/__tests__/**/?(*.)+(spec|test).[jt]s?(x)"],
globals: {
"ts-jest": {
tsconfig: "tsconfig.json",
diagnostics: false,
},
},
testPathIgnorePatterns: [
"/.polywrap/"
],
};

0 comments on commit f66b101

Please sign in to comment.