mirror of
https://github.com/youzan/vant.git
synced 2025-10-19 10:07:07 +00:00
simplify test config (#639)
This commit is contained in:
16
test/index.js
Normal file
16
test/index.js
Normal file
@@ -0,0 +1,16 @@
|
||||
require('packages/vant-css/src/index.css');
|
||||
|
||||
// hack for test touch event
|
||||
window.ontouchstart = {};
|
||||
|
||||
// 读取配置文件,判断运行单个测试文件还是所有测试文件
|
||||
const testsReq = require.context('./specs', true, /\.spec$/);
|
||||
if (process.env.TEST_FILE) {
|
||||
testsReq.keys().forEach((file) => {
|
||||
if (file.indexOf(process.env.TEST_FILE) !== -1) {
|
||||
testsReq(file);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
testsReq.keys().forEach(testsReq);
|
||||
}
|
Reference in New Issue
Block a user