Parcourir la source

fix: adjust jest ignore patterns

Sv443 il y a 5 mois
Parent
commit
fde154e6d4
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      jest.config.mjs

+ 1 - 1
jest.config.mjs

@@ -2,7 +2,7 @@
 const config = {
   preset: "ts-jest",
   testEnvironment: "node",
-  testPathIgnorePatterns: ["/node_modules/", "/out/"],
+  testPathIgnorePatterns: ["**/node_modules/**.*", "**/out/**.*"],
   testMatch: ["**/test/**/*.spec.ts"],
 };