Skip to content

Commit

Permalink
Remove unused Gulp target for testing
Browse files Browse the repository at this point in the history
To run the regression tests, developers use `gulp browsertest` and the
bot uses `gulp bottest`. We're not passing the `noreftest` option
anywhere in the code (probably because the `bottest` command takes care
of this already), so we should remove this.
  • Loading branch information
timvandermeij committed Apr 28, 2017
1 parent 1ae26cf commit 0f1bd80
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
4 changes: 0 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1044,10 +1044,6 @@ gulp.task('browsertest', function () {
return createTestSource('browser');
});

gulp.task('browsertest-noreftest', function () {
return createTestSource('browser (no reftest)');
});

gulp.task('unittest', function () {
return createTestSource('unit');
});
Expand Down
6 changes: 1 addition & 5 deletions make.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,7 @@ target.bottest = function() {
// make browsertest
//
target.browsertest = function(options) {
if (options && options.noreftest) {
execGulp('browsertest-noreftest');
} else {
execGulp('browsertest');
}
execGulp('browsertest');
};

//
Expand Down

0 comments on commit 0f1bd80

Please sign in to comment.