Sfoglia il codice sorgente

test: ignore size-check in coverage

Evan You 6 anni fa
parent
commit
2a994094de
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      jest.config.js

+ 2 - 1
jest.config.js

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