File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ var gulp = require('../');
1111var outpath = path . join ( __dirname , './out-fixtures' ) ;
1212
1313describe ( '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
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ var expect = require('expect');
77var gulp = require ( '../' ) ;
88
99describe ( '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 ( ) ;
You can’t perform that action at this time.
0 commit comments