@@ -447,7 +447,7 @@ preTest.displayName = "preTest";
447
447
const postTest = ( done ) => cmdLineOptions . lint ? lint ( done ) : done ( ) ;
448
448
449
449
const runTests = ( ) => runConsoleTests ( "built/local/run.js" , "mocha-fivemat-progress-reporter" , /*runInParallel*/ false , /*watchMode*/ false ) ;
450
- task ( "runtests" , series ( preBuild , preTest , runTests , postTest ) ) ;
450
+ task ( "runtests" , series ( preBuild , preTest , postTest ) ) ;
451
451
task ( "runtests" ) . description = "Runs the tests using the built run.js file." ;
452
452
task ( "runtests" ) . flags = {
453
453
"-t --tests=<regex>" : "Pattern for tests to run." ,
@@ -468,7 +468,7 @@ task("runtests").flags = {
468
468
} ;
469
469
470
470
const runTestsParallel = ( ) => runConsoleTests ( "built/local/run.js" , "min" , /*runInParallel*/ cmdLineOptions . workers > 1 , /*watchMode*/ false ) ;
471
- task ( "runtests-parallel" , series ( preBuild , preTest , runTestsParallel , postTest ) ) ;
471
+ task ( "runtests-parallel" , series ( preBuild , preTest , postTest ) ) ;
472
472
task ( "runtests-parallel" ) . description = "Runs all the tests in parallel using the built run.js file." ;
473
473
task ( "runtests-parallel" ) . flags = {
474
474
" --no-lint" : "disables lint." ,
0 commit comments