import { expect, test } from "bun:test"; import { parse } from "../src/index.ts"; test("parses schema-backed server actions", () => { const ast = parse(`page Users { action createUser using CreateUserSchema { return { id: input.name } } view {
} }`); expect(ast.actions[0]).toMatchObject({ name: "createUser", schema: "CreateUserSchema" }); });