作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试使用 gulp-mocha module但无法找到传递编译器标志的好方法。有没有办法将其包含在我的 gulp 任务中?也许以某种方式在一个单独的管道中?
从命令行运行 mocha 的示例(工作正常)mocha --compilers .:my_compiler.js test/**/*.js
使用 gulp-mocha 的示例(但我可以在哪里指定编译器)?
gulp.task('test', function () {
gulp.src(["test/**/*.js"], {
read: false
})
.pipe(mocha({
reporter: 'spec'
}))
.pipe(exit());
});
我在 gulp-mocha 插件下没有看到编译器选项,所以我想我需要通过某种方式通过管道附加文本来添加编译器?
最佳答案
var mocha = require('gulp-mocha');
var babel = require('babel/register');
gulp.task('mocha', function() {
return gulp.src(['test/**/*.js'])
.pipe(mocha({
compilers: {
js: babel
}
}));
});
关于javascript - gulp-mocha 如何传递编译器标志?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28858957/
我是一名优秀的程序员,十分优秀!