From: Evan You Date: Mon, 4 Nov 2019 23:41:40 +0000 (-0500) Subject: chore: ignore test utils in coverage X-Git-Tag: v3.0.0-alpha.0~243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=28a1e8ab27523baebd5df55e7a49c332a847017d;p=thirdparty%2Fvuejs%2Fcore.git chore: ignore test utils in coverage --- diff --git a/jest.config.js b/jest.config.js index 25c2b0f03a..0ea74c65f5 100644 --- a/jest.config.js +++ b/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'],