chore: remove unused field (#30465)

This commit is contained in:
Yury Semikhatsky 2024-04-22 13:31:17 -07:00 committed by GitHub
parent 4a275b8eca
commit 1e52c37b25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,6 @@ export class Dispatcher {
private _finished = new ManualPromise<void>();
private _isStopped = true;
private _allTests: TestCase[] = [];
private _config: FullConfigInternal;
private _reporter: ReporterV2;
private _failureTracker: FailureTracker;
@ -159,7 +158,6 @@ export class Dispatcher {
async run(testGroups: TestGroup[], extraEnvByProjectId: EnvByProjectId) {
this._extraEnvByProjectId = extraEnvByProjectId;
this._queue = testGroups;
this._allTests = testGroups.map(g => g.tests).flat();
for (const group of testGroups)
this._updateCounterForWorkerHash(group.workerHash, +1);
this._isStopped = false;