(id: string, tabs: string[], activeTab: string | null = tabs[0] ?? null)
| 8 | } |
| 9 | |
| 10 | function leaf(id: string, tabs: string[], activeTab: string | null = tabs[0] ?? null): PaneLayout { |
| 11 | return { kind: 'leaf', id, tabs, pinnedTabs: [], activeTab } |
| 12 | } |
| 13 | |
| 14 | describe('getBufferNavigationTarget', () => { |
| 15 | it('moves to the next visible buffer in the active pane', () => { |
no outgoing calls
no test coverage detected