Browse Source

Remove unused Gulp target for testing

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.
Tim van der Meij 8 years ago
parent
commit
145c0cea39
No known key found for this signature in database
GPG Key ID: 8C3FD2925A5F2762
  1. 4
      gulpfile.js
  2. 6
      make.js

4
gulpfile.js

@ -1044,10 +1044,6 @@ gulp.task('browsertest', function () {
return createTestSource('browser'); return createTestSource('browser');
}); });
gulp.task('browsertest-noreftest', function () {
return createTestSource('browser (no reftest)');
});
gulp.task('unittest', function () { gulp.task('unittest', function () {
return createTestSource('unit'); return createTestSource('unit');
}); });

6
make.js

@ -186,11 +186,7 @@ target.bottest = function() {
// make browsertest // make browsertest
// //
target.browsertest = function(options) { target.browsertest = function(options) {
if (options && options.noreftest) { execGulp('browsertest');
execGulp('browsertest-noreftest');
} else {
execGulp('browsertest');
}
}; };
// //

Loading…
Cancel
Save