gulp在mocha中导致超时
项目在 https://github.com/cgcgbcbc/gulp-chroot
代码大致如下
javascript
// test.js // ... it('should work with promise', function(done) { gulp.chroot('child', function() { gulp.task('promise', function() { return gulp.src('test.txt') .pipe(through2.obj(function(){ console.log('inside promise task'); console.log(process.cwd()); assert.equal(process.cwd(), path.join(__dirname, 'child')); })) .pipe(gulp.dest(path.join(__dirname, 'child', '2.txt'))); }); }); gulp.task('sync', ['promise'], function() { console.log('inside sync'); done(); }); gulp.start('sync'); });
这个测试在运行时会超时是为什么呢?
运行测试的命令是mocha --harmony --harmon-proxies
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来吧,让你high: