/// import { test } from "vitest"; export const modules = import.meta.glob("./**/*.*s"); export { componentSchema }; export const componentModules = import.meta.glob("../component/**/*.ts"); import { type ResendComponent } from "./index.js"; import { componentsGeneric } from "convex/server"; import componentSchema from "../component/schema.js"; export const components = componentsGeneric() as unknown as { resend: ResendComponent; }; test("setup", () => {});