unit test init

This commit is contained in:
pangxie1991
2017-03-02 17:30:55 +08:00
parent bd24b22203
commit c1b215cb94
112 changed files with 18189 additions and 1 deletions

11
test/unit/index.js Normal file
View File

@@ -0,0 +1,11 @@
require('packages/zanui-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);