Skip to content

Commit 138f757

Browse files
committed
Fix the test since tsbuildinfo is now always emitted (629bc0c)
1 parent ec4ea0e commit 138f757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/testRunner/unittests/config/projectReferences.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ namespace ts {
325325
};
326326
testProjectReferences(spec, "/alpha/tsconfig.json", (program, host) => {
327327
program.emit();
328-
assert.deepEqual(host.outputs.map(e => e.file).sort(), ["/alpha/bin/src/a.d.ts", "/alpha/bin/src/a.js"]);
328+
assert.deepEqual(host.outputs.map(e => e.file).sort(), ["/alpha/bin/src/a.d.ts", "/alpha/bin/src/a.js", "/alpha/bin/tsconfig.tsbuildinfo"]);
329329
});
330330
});
331331
});

0 commit comments

Comments
 (0)