Small test fixes

This commit is contained in:
Armando Aguirre
2018-05-10 18:18:43 -07:00
parent fdd078064d
commit bb178d38bf
2 changed files with 2 additions and 1 deletions

View File

@@ -164,7 +164,7 @@ namespace ts.projectSystem {
}
export function fileStats(nonZeroStats: Partial<server.FileStats>): server.FileStats {
return { ts: 0, tsx: 0, dts: 0, js: 0, jsx: 0, ...nonZeroStats };
return { ts: 0, tsx: 0, dts: 0, js: 0, jsx: 0, deferred: 0, ...nonZeroStats };
}
export class TestServerEventManager {