mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-02 21:45:17 +00:00
* refactor: share QA runtime helpers * refactor: keep QA helpers private * refactor: keep QA helpers on private runtime seam * chore: prune stale QA duplicate ignores * fix: align qa runtime boundary alias * fix: avoid startup memory lint conversion
22 lines
480 B
TypeScript
22 lines
480 B
TypeScript
import {
|
|
createQaDockerRuntime,
|
|
type QaDockerFetchLike as FetchLike,
|
|
type QaDockerRunCommand as RunCommand,
|
|
} from "openclaw/plugin-sdk/qa-runtime";
|
|
|
|
export type { FetchLike, RunCommand };
|
|
|
|
const dockerRuntime = createQaDockerRuntime({
|
|
auditContext: "qa-lab-docker-health-check",
|
|
commandTimeoutMs: null,
|
|
});
|
|
|
|
export const {
|
|
execCommand,
|
|
fetchHealthUrl,
|
|
resolveComposeServiceUrl,
|
|
resolveHostPort,
|
|
waitForDockerServiceHealth,
|
|
waitForHealth,
|
|
} = dockerRuntime;
|