@@ -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