mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-13 15:47:28 +00:00
11 lines
362 B
TypeScript
11 lines
362 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
describe("anthropic-vertex provider discovery entry", () => {
|
|
it("imports without loading the full plugin entry", async () => {
|
|
const module = await import("./provider-discovery.js");
|
|
|
|
expect(module.default.id).toBe("anthropic-vertex");
|
|
expect(module.default.catalog.order).toBe("simple");
|
|
});
|
|
});
|