mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 22:10:51 +00:00
12 lines
352 B
TypeScript
12 lines
352 B
TypeScript
import { describe } from "vitest";
|
|
import { threadingContractRegistry } from "./registry.js";
|
|
import { installChannelThreadingContractSuite } from "./suites.js";
|
|
|
|
for (const entry of threadingContractRegistry) {
|
|
describe(`${entry.id} threading contract`, () => {
|
|
installChannelThreadingContractSuite({
|
|
plugin: entry.plugin,
|
|
});
|
|
});
|
|
}
|