From 63c41f88cd0201830a624b5ce33781a35146d20d Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 25 Oct 2022 15:21:04 -0700 Subject: [PATCH] chore: remove stale TODOs (#18331) --- packages/playwright-test/src/runner.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/playwright-test/src/runner.ts b/packages/playwright-test/src/runner.ts index c8cecf0dab..9f156d28fe 100644 --- a/packages/playwright-test/src/runner.ts +++ b/packages/playwright-test/src/runner.ts @@ -265,7 +265,6 @@ export class Runner { const runStages = collectRunStages(projects); assert(runStages.length > 0); for (const stage of runStages) { - // TODO: do not collect files for each project multiple times. const filesByProject = await this._collectFiles(stage, fileMatcherFrom(options.testFileFilters)); const allTestFiles = new Set(); @@ -287,7 +286,6 @@ export class Runner { fatalErrors.push(duplicateTitlesError); // Filter tests to respect line/column filter. - // TODO: figure out how this is supposed to work with groups. if (options.testFileFilters.length) filterByFocusedLine(preprocessRoot, options.testFileFilters);