chore: should not collect coverage from lang config files

This commit is contained in:
chenjiahan 2020-11-14 08:10:59 +08:00
parent 98c553de29
commit d366f7b4f7

View File

@ -1,3 +1,9 @@
module.exports = {
testPathIgnorePatterns: ['/node_modules/', '/packages/'],
collectCoverageFrom: [
'src/**/*.{js,jsx,ts,tsx,vue}',
'!**/demo/**',
'!**/test/**',
'!**/lang/**',
],
};