chore: remove stale TODOs (#18331)

This commit is contained in:
Yury Semikhatsky 2022-10-25 15:21:04 -07:00 committed by GitHub
parent ffc47271f2
commit 63c41f88cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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<string>();
@ -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);