Fix the test since tsbuildinfo is now always emitted (629bc0c)

This commit is contained in:
Sheetal Nandi 2019-05-16 12:50:17 -07:00
parent ec4ea0e474
commit 138f757709

View File

@ -325,7 +325,7 @@ namespace ts {
};
testProjectReferences(spec, "/alpha/tsconfig.json", (program, host) => {
program.emit();
assert.deepEqual(host.outputs.map(e => e.file).sort(), ["/alpha/bin/src/a.d.ts", "/alpha/bin/src/a.js"]);
assert.deepEqual(host.outputs.map(e => e.file).sort(), ["/alpha/bin/src/a.d.ts", "/alpha/bin/src/a.js", "/alpha/bin/tsconfig.tsbuildinfo"]);
});
});
});