@@ -97,7 +97,7 @@ namespace ts.tscWatch {
97
97
const tests = subProjectFiles ( SubProject . tests ) ;
98
98
const ui = subProjectFiles ( SubProject . ui ) ;
99
99
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 ) ;
101
101
const testProjectExpectedWatchedDirectoriesRecursive = [ projectPath ( SubProject . core ) , projectPath ( SubProject . logic ) ] ;
102
102
103
103
function createSolutionInWatchMode ( allFiles : ReadonlyArray < File > , defaultOptions ?: BuildOptions , disableConsoleClears ?: boolean ) {
@@ -244,7 +244,7 @@ export class someClass2 { }`);
244
244
const allFiles = [ libFile , ...core , logic [ 1 ] , ...tests ] ;
245
245
const host = createWatchedSystem ( allFiles , { currentDirectory : projectsLocation } ) ;
246
246
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 ) ) ;
248
248
checkWatchedDirectories ( host , emptyArray , /*recursive*/ false ) ;
249
249
checkWatchedDirectories ( host , [ projectPath ( SubProject . core ) ] , /*recursive*/ true ) ;
250
250
checkOutputErrorsInitial ( host , [
0 commit comments