cloudaxe-opencode/packages/tui/test/keybind.test.ts

8 lines
305 B
TypeScript
Raw Permalink Normal View History

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")
})