mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
12 lines
443 B
TypeScript
12 lines
443 B
TypeScript
// Anthropic Vertex tests cover provider discovery.import guard plugin behavior.
|
|
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");
|
|
});
|
|
});
|