1namespace ts { 2 describe("unittests:: tsc:: runWithoutArgs::", () => { 3 verifyTsc({ 4 scenario: "runWithoutArgs", 5 subScenario: "show help with ExitStatus.DiagnosticsPresent_OutputsSkipped", 6 fs: () => loadProjectFromFiles({}), 7 commandLineArgs: [] 8 }); 9 }); 10} 11