/// import { test } from "vitest"; import { convexTest } from "convex-test"; import schema from "./schema.js"; export const modules = import.meta.glob("./**/*.*s"); import workpool from "@convex-dev/workpool/test"; export function initConvexTest() { const t = convexTest(schema, modules); t.registerComponent("workpool", workpool.schema, workpool.modules); return t; } test("setup", () => {});