将变量从gulp文件传递到mocha测试文件

时间:2017-04-20 12:50:34

标签: gulp mocha gulp-mocha

我正在尝试使用gulp-mocha通过gulp执行mocha测试文件。这样我需要将变量传递(或管道)到mocha测试文件,可以在mocha测试文件中访问。我怎样才能实现这一目标

1 个答案:

答案 0 :(得分:-1)

要使用测试文件,

  gulp.task('taskname', function (done) {
        gulp.src('test/testfile.js')
            .pipe(gulpmocha(),setTimeout(function() {
                done(null);
        }, 5000))
    });

要传递变量,您可能需要发布代码并进行测试