1namespace ts { 2 describe("unittests:: tsbuild:: lateBoundSymbol:: interface is merged and contains late bound member", () => { 3 verifyTscSerializedIncrementalEdits({ 4 subScenario: "interface is merged and contains late bound member", 5 fs: () => loadProjectFromDisk("tests/projects/lateBoundSymbol"), 6 scenario: "lateBoundSymbol", 7 commandLineArgs: ["--b", "/src/tsconfig.json", "--verbose"], 8 incrementalScenarios: [{ 9 buildKind: BuildKind.IncrementalDtsUnchanged, 10 modifyFs: fs => replaceText(fs, "/src/src/main.ts", "const x = 10;", ""), 11 }] 12 }); 13 }); 14} 15