mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-15 11:11:09 +00:00
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
export async function runQaSuiteFromRuntime(
|
|
...args: Parameters<typeof import("./suite.js").runQaSuite>
|
|
) {
|
|
const { runQaSuite } = await import("./suite.js");
|
|
return await runQaSuite(...args);
|
|
}
|