Skip to content

Commit fc2eff0

Browse files
author
Andy Hanson
committed
Remove TODO comments
1 parent 8a985ef commit fc2eff0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/testRunner/unittests/tsbuildWatchMode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ namespace ts.tscWatch {
9797
const tests = subProjectFiles(SubProject.tests);
9898
const ui = subProjectFiles(SubProject.ui);
9999
const allFiles: ReadonlyArray<File> = [libFile, ...core, ...logic, ...tests, ...ui];
100-
const testProjectExpectedWatchedFiles = [core[0], core[1], core[2]!, ...logic, ...tests].map(f => f.path); // TODO: GH#18217
100+
const testProjectExpectedWatchedFiles = [core[0], core[1], core[2]!, ...logic, ...tests].map(f => f.path);
101101
const testProjectExpectedWatchedDirectoriesRecursive = [projectPath(SubProject.core), projectPath(SubProject.logic)];
102102

103103
function createSolutionInWatchMode(allFiles: ReadonlyArray<File>, defaultOptions?: BuildOptions, disableConsoleClears?: boolean) {
@@ -244,7 +244,7 @@ export class someClass2 { }`);
244244
const allFiles = [libFile, ...core, logic[1], ...tests];
245245
const host = createWatchedSystem(allFiles, { currentDirectory: projectsLocation });
246246
createSolutionBuilderWithWatch(host, [`${project}/${SubProject.tests}`]);
247-
checkWatchedFiles(host, [core[0], core[1], core[2]!, logic[0], ...tests].map(f => f.path)); // TODO: GH#18217
247+
checkWatchedFiles(host, [core[0], core[1], core[2]!, logic[0], ...tests].map(f => f.path));
248248
checkWatchedDirectories(host, emptyArray, /*recursive*/ false);
249249
checkWatchedDirectories(host, [projectPath(SubProject.core)], /*recursive*/ true);
250250
checkOutputErrorsInitial(host, [

0 commit comments

Comments
 (0)