@@ -249,7 +249,7 @@ export function start() {
249
249
let totalPassing = 0 ;
250
250
const startDate = new Date ( ) ;
251
251
252
- const progressBars = new ProgressBars ( { noColors : noColors } ) ; // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
252
+ const progressBars = new ProgressBars ( { noColors } ) ;
253
253
const progressUpdateInterval = 1 / progressBars . _options . width ;
254
254
let nextProgress = progressUpdateInterval ;
255
255
@@ -259,7 +259,7 @@ export function start() {
259
259
let closedWorkers = 0 ;
260
260
for ( let i = 0 ; i < workerCount ; i ++ ) {
261
261
// TODO: Just send the config over the IPC channel or in the command line arguments
262
- const config : TestConfig = { light : lightMode , listenForWork : true , runUnitTests : runUnitTests , stackTraceLimit : stackTraceLimit , timeout : globalTimeout } ; // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
262
+ const config : TestConfig = { light : lightMode , listenForWork : true , runUnitTests, stackTraceLimit, timeout : globalTimeout } ;
263
263
const configPath = ts . combinePaths ( taskConfigsFolder , `task-config${ i } .json` ) ;
264
264
IO . writeFile ( configPath , JSON . stringify ( config ) ) ;
265
265
const worker : Worker = {
@@ -558,8 +558,7 @@ export function start() {
558
558
failedTestReporter = new FailedTestReporter ( replayRunner , {
559
559
reporterOptions : {
560
560
file : path . resolve ( ".failed-tests" ) ,
561
- keepFailed : keepFailed // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
562
- // eslint-disable-line @typescript-eslint/no-unnecessary-qualifier
561
+ keepFailed,
563
562
}
564
563
} ) ;
565
564
}
0 commit comments