mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-11 21:18:27 +00:00
10 lines
358 B
TypeScript
10 lines
358 B
TypeScript
import { describe, expect, test } from "bun:test"
|
|
import { FileSystem } from "../src/filesystem"
|
|
|
|
describe("schema compatibility", () => {
|
|
test("moved class schemas remain constructible", () => {
|
|
const input = new FileSystem.FindInput({ query: "src" })
|
|
expect(input).toBeInstanceOf(FileSystem.FindInput)
|
|
expect(input.query).toBe("src")
|
|
})
|
|
})
|