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