mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-03 21:50:22 +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");
|
|
});
|
|
});
|