5fd28cffc5
Requested by Sebastian Herrlinger (@kommander). Rebased onto current v2 with conflicts resolved and all required checks passing.
8 lines
311 B
TypeScript
8 lines
311 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")
|
|
})
|