fix: test coverage

This commit is contained in:
陈嘉涵 2017-08-15 21:56:45 +08:00
parent a0167b734d
commit 74d04f6935
2 changed files with 1 additions and 6 deletions

View File

@ -26,6 +26,7 @@ const webpackConfig = {
}
})
],
stats: 'errors-only',
resolve: {
modules: [
path.resolve(process.cwd(), 'node_modules'),

View File

@ -3,9 +3,3 @@ require('packages/vant-css/src/index.css');
// require all test files (files that ends with .spec.js)
const testsReq = require.context('./specs', true, /\.spec$/);
testsReq.keys().forEach(testsReq);
// require all src files except main.js for coverage.
// you can also change this to match only the subset of files that
// you want coverage for.
const srcReq = require.context('../../src', true, /^\.\/(?!main(\.js)?$)/);
srcReq.keys().forEach(srcReq);