diff --git a/jest.config.js b/jest.config.js index 44da947..4a4c022 100644 --- a/jest.config.js +++ b/jest.config.js @@ -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/" + ], };