Browse Source

chore: ignore test utils in coverage

Evan You 6 years ago
parent
commit
28a1e8ab27
1 changed files with 2 additions and 1 deletions
  1. 2 1
      jest.config.js

+ 2 - 1
jest.config.js

@@ -15,7 +15,8 @@ module.exports = {
   coverageReporters: ['html', 'lcov', 'text'],
   collectCoverageFrom: [
     'packages/*/src/**/*.ts',
-    '!packages/template-explorer/**'
+    '!packages/template-explorer/**',
+    '!packages/runtime-test/src/utils/**'
   ],
   watchPathIgnorePatterns: ['/node_modules/'],
   moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],