mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-13 10:08:30 +00:00
18 lines
621 B
TypeScript
18 lines
621 B
TypeScript
import { describe, expect, test } from "bun:test"
|
|
import { Effect } from "effect"
|
|
import { SessionsCursor } from "../src/groups/session.js"
|
|
import { Session } from "@opencode-ai/schema/session"
|
|
|
|
describe("SessionsCursor", () => {
|
|
test("round trips without Node globals", async () => {
|
|
const input = {
|
|
workspace: undefined,
|
|
search: "protocol",
|
|
order: "desc" as const,
|
|
anchor: { id: Session.ID.make("ses_test"), time: 1, direction: "next" as const },
|
|
}
|
|
const cursor = SessionsCursor.make(input)
|
|
|
|
expect(await Effect.runPromise(SessionsCursor.parse(cursor))).toEqual(input)
|
|
})
|
|
})
|