mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-22 18:25:32 -04:00
86a468c4d8
Co-authored-by: Simon Klee <hello@simonklee.dk>
8 lines
305 B
TypeScript
8 lines
305 B
TypeScript
import { expect, test } from "bun:test"
|
|
import { TuiKeybind } from "../src/config/keybind"
|
|
|
|
test("binds agent cycling only to shift+tab by default", () => {
|
|
expect(TuiKeybind.Definitions.agent_cycle.default).toBe("shift+tab")
|
|
expect(TuiKeybind.Definitions.agent_cycle_reverse.default).toBe("none")
|
|
})
|