Procházet zdrojové kódy

ci: skip e2e tests on netlify coverage builds

Evan You před 6 roky
rodič
revize
80f8b46177
1 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. 6 1
      jest.config.js

+ 6 - 1
jest.config.js

@@ -24,5 +24,10 @@ module.exports = {
     '^@vue/(.*?)$': '<rootDir>/packages/$1/src'
     '^@vue/(.*?)$': '<rootDir>/packages/$1/src'
   },
   },
   rootDir: __dirname,
   rootDir: __dirname,
-  testMatch: ['<rootDir>/packages/**/__tests__/**/*spec.[jt]s?(x)']
+  testMatch: ['<rootDir>/packages/**/__tests__/**/*spec.[jt]s?(x)'],
+  testPathIgnorePatterns: process.env.SKIP_E2E
+    ? // ignore example tests on netlify builds since they don't contribute
+      // to coverage and can cause netlify builds to fail
+      ['/node_modules/', '/examples/__tests__']
+    : ['/node_modules/']
 }
 }