Skip to content

Commit

Permalink
attempt to fix 0.12.X node specs
Browse files Browse the repository at this point in the history
  • Loading branch information
nmccready committed Jan 9, 2017
1 parent e7c2e96 commit 53a426b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/integration.js
Expand Up @@ -136,11 +136,11 @@ test('combined: less: inline concatenated file', {timeout: 1500}, function(t) {
.pipe($.if("*.less",$.less()))
.pipe(sourcemaps.write({sourceRoot:'../../test/assets'}))
.pipe(gulp.dest('tmp/combined_inline_less'))
.on('error', function() {
.once('error', function() {
t.fail('emitted error');
t.end();
})
.on('finish', function(){
.once('finish', function(){
moveHtml('combined_inline_less', t);
});
});
Expand All @@ -157,7 +157,7 @@ test('combined: mapped preExisting', function(t) {
.pipe($.if("*.js",$.concat("index.js")))
.pipe(sourcemaps.write('.', {sourceRoot:'../../test/assets'}))
.pipe(gulp.dest('tmp/combined_map_preExisting'))
.on('error', function() {
.once('error', function() {
t.fail('emitted error');
t.end();
})
Expand All @@ -169,7 +169,7 @@ test('combined: mapped preExisting', function(t) {
'concatenated file is mapped once');
}
})
.on('finish', function(){
.once('finish', function(){
moveHtml('combined_map_preExisting', t);
});
});
Expand Down

0 comments on commit 53a426b

Please sign in to comment.