(tabs: any[], viewColumn = vscode.ViewColumn.One)
| 539 | } |
| 540 | |
| 541 | const setTabs = (tabs: any[], viewColumn = vscode.ViewColumn.One) => { |
| 542 | Object.defineProperty(vscode.window.tabGroups, "all", { |
| 543 | get: () => [{ tabs, viewColumn }], |
| 544 | configurable: true, |
| 545 | }) |
| 546 | } |
| 547 | |
| 548 | it("captures unrelated preview tabs with their scroll position and group, excluding the diff target", () => { |
| 549 | setTabs( |
no outgoing calls
no test coverage detected