• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1namespace ts {
2    // https://github.com/microsoft/TypeScript/issues/33849
3    describe("unittests:: tsbuild:: exitCodeOnBogusFile:: test exit code", () => {
4        verifyTsc({
5            scenario: "exitCodeOnBogusFile",
6            subScenario: `test exit code`,
7            fs: () => loadProjectFromFiles({}),
8            commandLineArgs: ["-b", "bogus.json"]
9        });
10    });
11}
12