mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-03 05:12:15 +00:00
11 lines
377 B
TypeScript
11 lines
377 B
TypeScript
import { describeProviderContracts } from "../../../test/helpers/plugins/provider-contract.js";
|
|
import { pluginRegistrationContractRegistry } from "./registry.js";
|
|
|
|
const providerContractTests = pluginRegistrationContractRegistry.filter(
|
|
(entry) => entry.providerIds.length > 0,
|
|
);
|
|
|
|
for (const entry of providerContractTests) {
|
|
describeProviderContracts(entry.pluginId);
|
|
}
|