mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
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.
This commit is contained in:
parent
19cc9bcded
commit
145c0cea39
2 changed files with 1 additions and 9 deletions
|
@ -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');
|
||||
});
|
||||
|
|
6
make.js
6
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');
|
||||
};
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue