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/**', + ], };