diff --git a/gulpfile.js b/gulpfile.js index a12d6aa7d..b47592c62 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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'); }); diff --git a/make.js b/make.js index 1263476d2..498860459 100644 --- a/make.js +++ b/make.js @@ -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'); }; //