@@ -424,10 +424,8 @@ task("watch-local").flags = {
424
424
const preTest = parallel ( buildTsc , buildTests , buildServices , buildLssl ) ;
425
425
preTest . displayName = "preTest" ;
426
426
427
- const postTest = ( done ) => cmdLineOptions . lint ? lint ( ) : done ( ) ;
428
-
429
427
const runTests = ( ) => runConsoleTests ( "built/local/run.js" , "mocha-fivemat-progress-reporter" , /*runInParallel*/ false , /*watchMode*/ false ) ;
430
- task ( "runtests" , series ( preBuild , preTest , runTests , postTest ) ) ;
428
+ task ( "runtests" , series ( preBuild , preTest , runTests ) ) ;
431
429
task ( "runtests" ) . description = "Runs the tests using the built run.js file." ;
432
430
task ( "runtests" ) . flags = {
433
431
"-t --tests=<regex>" : "Pattern for tests to run." ,
@@ -439,18 +437,16 @@ task("runtests").flags = {
439
437
" --dirty" : "Run tests without first cleaning test output directories" ,
440
438
" --stackTraceLimit=<limit>" : "Sets the maximum number of stack frames to display. Use 'full' to show all frames." ,
441
439
" --no-color" : "Disables color" ,
442
- " --no-lint" : "Disables lint" ,
443
440
" --timeout=<ms>" : "Overrides the default test timeout." ,
444
441
" --built" : "Compile using the built version of the compiler." ,
445
442
" --shards" : "Total number of shards running tests (default: 1)" ,
446
443
" --shardId" : "1-based ID of this shard (default: 1)" ,
447
444
} ;
448
445
449
446
const runTestsParallel = ( ) => runConsoleTests ( "built/local/run.js" , "min" , /*runInParallel*/ cmdLineOptions . workers > 1 , /*watchMode*/ false ) ;
450
- task ( "runtests-parallel" , series ( preBuild , preTest , runTestsParallel , postTest ) ) ;
447
+ task ( "runtests-parallel" , series ( preBuild , preTest , runTestsParallel ) ) ;
451
448
task ( "runtests-parallel" ) . description = "Runs all the tests in parallel using the built run.js file." ;
452
449
task ( "runtests-parallel" ) . flags = {
453
- " --no-lint" : "disables lint." ,
454
450
" --light" : "Run tests in light mode (fewer verifications, but tests run faster)." ,
455
451
" --keepFailed" : "Keep tests in .failed-tests even if they pass." ,
456
452
" --dirty" : "Run tests without first cleaning test output directories." ,
@@ -613,7 +609,6 @@ task("watch").flags = {
613
609
" --dirty" : "Run tests without first cleaning test output directories" ,
614
610
" --stackTraceLimit=<limit>" : "Sets the maximum number of stack frames to display. Use 'full' to show all frames." ,
615
611
" --no-color" : "Disables color" ,
616
- " --no-lint" : "Disables lint" ,
617
612
" --timeout=<ms>" : "Overrides the default test timeout." ,
618
613
" --workers=<number>" : "The number of parallel workers to use." ,
619
614
" --built" : "Compile using the built version of the compiler." ,
0 commit comments