1

正常版本的 Mocha 支持在执行测试前延迟(链接:https ://mochajs.org/#hooks )。

有没有办法在 gulp-mocha 中做到这一点?

4

2 回答 2

0

解决此问题的理想方法是进行异步测试。

describe('StackOverflowExample', function() {
    it('Demonstrates how to create a test with delay', async function(done) {
        setTimeout(() => {
            //Your code here
            done();
        }, 250); //Set the delay to your liking
    });
});
于 2016-06-25T08:12:01.900 回答
0

与 simple 相比,使用 in 时测试语法保持不变gulp-mochamocha

实际上,gulp-mocha它只是一个帮助您通过以下方式运行测试套件的包装器gulp

于 2016-06-24T11:49:02.110 回答