From 723af3081e0e731e0235567973658aca9a9575d7 Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 30 Apr 2021 18:15:36 -0400 Subject: [PATCH] chore: ignore compat entries for coverage --- jest.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 306ed5f0..f9b4cfc0 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'],