Skip to content

Commit

Permalink
fix e2e test running through gulp (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
imurchie authored Jan 9, 2020
1 parent 9ba5d6b commit fe072ac
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,8 @@ gulp.task('test:e2e', function() {
var e2eTestTasks = [];
_(args.browsers).chain().without('multi').each(function(browser) {
e2eTestTasks.push(`test:e2e:${browser}`);
});
// if (e2eTestTasks.length > 0) {
return runSequence(e2eTestTasks);
// }
}).value();
return runSequence(e2eTestTasks);
});

gulp.task('test', function() {
Expand Down

0 comments on commit fe072ac

Please sign in to comment.