UNPKG

@convex-dev/agent

Version:

A agent component for Convex.

13 lines (10 loc) 316 B
/// <reference types="vite/client" /> import { convexTest } from "convex-test"; import { test } from "vitest"; import schema from "./schema.js"; export const modules = import.meta.glob("./**/*.*s"); export function initConvexTest() { const t = convexTest(schema, modules); return t; } test("setup", () => {});