正常版本的 Mocha 支持在执行测试前延迟(链接:https ://mochajs.org/#hooks )。
有没有办法在 gulp-mocha 中做到这一点?
正常版本的 Mocha 支持在执行测试前延迟(链接:https ://mochajs.org/#hooks )。
有没有办法在 gulp-mocha 中做到这一点?
解决此问题的理想方法是进行异步测试。
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
});
});
与 simple 相比,使用 in 时测试语法保持不变gulp-mocha
mocha
实际上,gulp-mocha
它只是一个帮助您通过以下方式运行测试套件的包装器gulp