mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 11:31:34 +00:00
* refactor(providers): share family forward compat resolution * test(providers): derive runtime contracts from manifests * test(providers): validate manifest fixture inputs * refactor(zai): narrow forward compat inputs
9 lines
383 B
TypeScript
9 lines
383 B
TypeScript
// Github Copilot tests cover provider runtime.contract plugin behavior.
|
|
import { describeGithubCopilotProviderRuntimeContract } from "openclaw/plugin-sdk/provider-test-contracts";
|
|
import manifest from "./openclaw.plugin.json" with { type: "json" };
|
|
|
|
describeGithubCopilotProviderRuntimeContract(
|
|
() => import("./index.js"),
|
|
manifest.modelCatalog.providers["github-copilot"],
|
|
);
|