We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a3cb7 commit 95499e7Copy full SHA for 95499e7
test/dest.js
@@ -75,8 +75,7 @@ describe('gulp output stream', function() {
75
rimraf(outpath, function(err){
76
should.not.exist(err);
77
var instream = gulp.src(join(__dirname, "./fixtures/**/*.txt"), {buffer:false});
78
- var outstream = gulp.dest(outpath);
79
- instream.pipe(outstream);
+ var outstream = instream.pipe(gulp.dest(outpath));
80
81
outstream.on('error', done);
82
outstream.on('data', function(file) {
0 commit comments