mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 20:10:42 +00:00
16 lines
499 B
TypeScript
16 lines
499 B
TypeScript
import { registerSingleProviderPlugin } from "openclaw/plugin-sdk/plugin-test-runtime";
|
|
import { describe, expect, it } from "vitest";
|
|
import qwenPlugin from "./index.js";
|
|
|
|
async function registerQwenProvider() {
|
|
return registerSingleProviderPlugin(qwenPlugin);
|
|
}
|
|
|
|
describe("qwen provider plugin", () => {
|
|
it("does not expose runtime model suppression hooks", async () => {
|
|
const provider = await registerQwenProvider();
|
|
|
|
expect(provider.suppressBuiltInModel).toBeUndefined();
|
|
});
|
|
});
|