Files
wehub-resource-sync 6d978fe483
Build / Frontend Build (push) Has been cancelled
Build / Backend Build (push) Has been cancelled
Build / Docker Build (push) Has been cancelled
Build / Kubernetes Deploy Smoke Test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:35:24 +08:00

12 lines
489 B
TypeScript

import { test, expect } from "../fixtures/test.js";
import { defaultRuntimePod, registerRuntimePod } from "../fixtures/apiClient.js";
test("@p0 @local-only db setup registers runtime pod", async ({ request }) => {
await test.step("register deterministic runtime pod", async () => {
const pod = await registerRuntimePod(request);
expect(pod.pod_name).toBe(defaultRuntimePod.pod_name);
expect(pod.runtime_type).toBe("openclaw");
expect(pod.state).toBe("ready");
});
});