From d366f7b4f755cb04c8ba70427110e7cecf092559 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 14 Nov 2020 08:10:59 +0800 Subject: [PATCH] chore: should not collect coverage from lang config files --- jest.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jest.config.js b/jest.config.js index 7738c860d..741650f95 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,3 +1,9 @@ module.exports = { testPathIgnorePatterns: ['/node_modules/', '/packages/'], + collectCoverageFrom: [ + 'src/**/*.{js,jsx,ts,tsx,vue}', + '!**/demo/**', + '!**/test/**', + '!**/lang/**', + ], };