chore: remove unused field (#30465)
This commit is contained in:
parent
4a275b8eca
commit
1e52c37b25
|
|
@ -36,7 +36,6 @@ export class Dispatcher {
|
||||||
private _finished = new ManualPromise<void>();
|
private _finished = new ManualPromise<void>();
|
||||||
private _isStopped = true;
|
private _isStopped = true;
|
||||||
|
|
||||||
private _allTests: TestCase[] = [];
|
|
||||||
private _config: FullConfigInternal;
|
private _config: FullConfigInternal;
|
||||||
private _reporter: ReporterV2;
|
private _reporter: ReporterV2;
|
||||||
private _failureTracker: FailureTracker;
|
private _failureTracker: FailureTracker;
|
||||||
|
|
@ -159,7 +158,6 @@ export class Dispatcher {
|
||||||
async run(testGroups: TestGroup[], extraEnvByProjectId: EnvByProjectId) {
|
async run(testGroups: TestGroup[], extraEnvByProjectId: EnvByProjectId) {
|
||||||
this._extraEnvByProjectId = extraEnvByProjectId;
|
this._extraEnvByProjectId = extraEnvByProjectId;
|
||||||
this._queue = testGroups;
|
this._queue = testGroups;
|
||||||
this._allTests = testGroups.map(g => g.tests).flat();
|
|
||||||
for (const group of testGroups)
|
for (const group of testGroups)
|
||||||
this._updateCounterForWorkerHash(group.workerHash, +1);
|
this._updateCounterForWorkerHash(group.workerHash, +1);
|
||||||
this._isStopped = false;
|
this._isStopped = false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue