mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 10:41:23 +00:00
9 lines
312 B
TypeScript
9 lines
312 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import * as providerAuthRuntime from "./provider-auth-runtime.js";
|
|
|
|
describe("plugin-sdk provider-auth-runtime", () => {
|
|
it("exports the runtime-ready auth helper", () => {
|
|
expect(typeof providerAuthRuntime.getRuntimeAuthForModel).toBe("function");
|
|
});
|
|
});
|