如何创建单个 gulp 任务来运行单个 wct 测试?我有以下项目结构:
|-build
|--gulpfile.babel.js
|--wct.conf.js
|-test
|--test-folder1
|----t-test1.html
|----t-test1.js
|--test-folder2
|----t-test2.html
|----t-test2.js
在我的gulpfile.babel.js 中,我想为t-test1
和创建单独的任务t-test2
。
伪代码:
gulp.task('test1', (done) => {
<RUN WCT TEST FROM FOLDER t-folder1>; // Is there a way to trigger single test here???
done();
});
gulp.task('test2', (done) => {
<RUN WCT TEST FROM FOLDER t-folder2>; // Is there a way to trigger single test here???
done();
});
我找不到任何示例代码。
任何帮助表示赞赏。