Skip to content

Commit 44b0837

Browse files
committed
chore(ci): Skip stream tests on Node 10 due to broken compatibility
1 parent 439b981 commit 44b0837

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

‎test/dest.js‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ var gulp = require('../');
1111
var outpath = path.join(__dirname, './out-fixtures');
1212

1313
describe('gulp.dest()', function() {
14+
before(function () {
15+
if (process.versions.node.startsWith("10.")) {
16+
this.skip();
17+
return;
18+
}
19+
});
20+
1421
beforeEach(rimraf.bind(null, outpath));
1522
afterEach(rimraf.bind(null, outpath));
1623

‎test/src.js‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ var expect = require('expect');
77
var gulp = require('../');
88

99
describe('gulp.src()', function() {
10+
before(function () {
11+
if (process.versions.node.startsWith("10.")) {
12+
this.skip();
13+
return;
14+
}
15+
});
16+
1017
it('should return a stream', function(done) {
1118
var stream = gulp.src('./fixtures/*.coffee', { cwd: __dirname });
1219
expect(stream).toBeDefined();

0 commit comments

Comments
 (0)