From: Evan You Date: Fri, 30 Apr 2021 22:15:36 +0000 (-0400) Subject: chore: ignore compat entries for coverage X-Git-Tag: v3.1.0-beta.1~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=723af3081e0e731e0235567973658aca9a9575d7;p=thirdparty%2Fvuejs%2Fcore.git chore: ignore compat entries for coverage --- diff --git a/jest.config.js b/jest.config.js index 306ed5f037..f9b4cfc0a6 100644 --- a/jest.config.js +++ b/jest.config.js @@ -30,7 +30,9 @@ module.exports = { // only called in browsers '!packages/vue/src/devCheck.ts', // only used as a build entry - '!packages/vue/src/runtime.ts' + '!packages/vue/src/runtime.ts', + // mostly just entries + '!packages/vue-compat/**' ], watchPathIgnorePatterns: ['/node_modules/', '/dist/', '/.git/'], moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],