mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
21 lines
513 B
JavaScript
21 lines
513 B
JavaScript
import Vue from 'vue';
|
|
import Vant from 'packages';
|
|
require('packages/vant-css/src/index.css');
|
|
|
|
Vue.use(Vant);
|
|
|
|
// 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);
|
|
}
|