gulp在mocha中导致超时

发布于 2022-09-01 15:43:55 字数 898 浏览 20 评论 0

项目在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

番薯 2022-09-08 15:43:55

来吧,让你high:

it('should work with promise', function(done) {
    gulp.chroot('child', function() {
        gulp.task('promise', function() {

            return gulp.src('test.txt')
                .pipe((function() {
                    var stream = through2.obj(function(file, encode, next) {
                        console.log('inside promise task');
                        console.log(process.cwd());
                        assert.equal(process.cwd(), path.join(__dirname, 'child'));
                        next();
                    });
                    stream.resume();
                    return stream;
                }()))
                .pipe(gulp.dest(path.join(__dirname, 'child', '2.txt')));
        });
    });
    gulp.task('sync', ['promise'], function() {
        console.log('inside sync');
        done();
    });
    gulp.start('sync');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文