@@ -600,7 +600,7 @@ namespace ts.projectSystem {
600600
601601 checkProjectActualFiles ( service . configuredProjects [ 0 ] , [ ] ) ;
602602 checkProjectActualFiles ( service . inferredProjects [ 0 ] , [ f1 . path ] ) ;
603- } )
603+ } ) ;
604604
605605 it ( "create configured project without file list" , ( ) => {
606606 const configFile : FileOrFolder = {
@@ -1153,7 +1153,7 @@ namespace ts.projectSystem {
11531153
11541154 const host = createServerHost ( [ f1 , f2 , libFile ] ) ;
11551155 const service = createProjectService ( host ) ;
1156- service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : toExternalFiles ( [ f1 . path , f2 . path ] ) , options : { } } )
1156+ service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : toExternalFiles ( [ f1 . path , f2 . path ] ) , options : { } } ) ;
11571157
11581158 service . openClientFile ( f1 . path ) ;
11591159 service . openClientFile ( f2 . path , "let x: string" ) ;
@@ -1185,7 +1185,7 @@ namespace ts.projectSystem {
11851185
11861186 const host = createServerHost ( [ f1 , f2 , libFile ] ) ;
11871187 const service = createProjectService ( host ) ;
1188- service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : [ { fileName : f1 . path } , { fileName : f2 . path , hasMixedContent : true } ] , options : { } } )
1188+ service . openExternalProject ( { projectFileName : "/a/b/project" , rootFiles : [ { fileName : f1 . path } , { fileName : f2 . path , hasMixedContent : true } ] , options : { } } ) ;
11891189
11901190 service . openClientFile ( f1 . path ) ;
11911191 service . openClientFile ( f2 . path , "let somelongname: string" ) ;
@@ -1868,7 +1868,7 @@ namespace ts.projectSystem {
18681868
18691869 for ( const f of [ f2 , f3 ] ) {
18701870 const scriptInfo = projectService . getScriptInfoForNormalizedPath ( server . toNormalizedPath ( f . path ) ) ;
1871- assert . equal ( scriptInfo . containingProjects . length , 0 , `expect 0 containing projects for '${ f . path } '` )
1871+ assert . equal ( scriptInfo . containingProjects . length , 0 , `expect 0 containing projects for '${ f . path } '` ) ;
18721872 }
18731873 } ) ;
18741874
@@ -1984,7 +1984,7 @@ namespace ts.projectSystem {
19841984 projectFileName,
19851985 rootFiles : [ toExternalFile ( f1 . path ) ] ,
19861986 options : { }
1987- } )
1987+ } ) ;
19881988 projectService . openClientFile ( f1 . path , "let x = 1;\nlet y = 2;" ) ;
19891989
19901990 projectService . checkNumberOfProjects ( { externalProjects : 1 } ) ;
0 commit comments