chore: remove stale TODOs (#18331)
This commit is contained in:
parent
ffc47271f2
commit
63c41f88cd
|
|
@ -265,7 +265,6 @@ export class Runner {
|
||||||
const runStages = collectRunStages(projects);
|
const runStages = collectRunStages(projects);
|
||||||
assert(runStages.length > 0);
|
assert(runStages.length > 0);
|
||||||
for (const stage of runStages) {
|
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 filesByProject = await this._collectFiles(stage, fileMatcherFrom(options.testFileFilters));
|
||||||
|
|
||||||
const allTestFiles = new Set<string>();
|
const allTestFiles = new Set<string>();
|
||||||
|
|
@ -287,7 +286,6 @@ export class Runner {
|
||||||
fatalErrors.push(duplicateTitlesError);
|
fatalErrors.push(duplicateTitlesError);
|
||||||
|
|
||||||
// Filter tests to respect line/column filter.
|
// Filter tests to respect line/column filter.
|
||||||
// TODO: figure out how this is supposed to work with groups.
|
|
||||||
if (options.testFileFilters.length)
|
if (options.testFileFilters.length)
|
||||||
filterByFocusedLine(preprocessRoot, options.testFileFilters);
|
filterByFocusedLine(preprocessRoot, options.testFileFilters);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue