fix(ci): refresh qa-lab lockfile

This commit is contained in:
Peter Steinberger
2026-04-12 19:45:46 -07:00
parent 20266c14cb
commit 5da237c887
2 changed files with 18 additions and 4 deletions

View File

@@ -178,10 +178,20 @@ describe("qa-channel plugin", () => {
timeoutMs: 15_000,
});
expect(dispatchedCtx?.MediaPath).toEqual(expect.stringContaining("red-top-blue-bottom"));
expect(dispatchedCtx?.MediaType).toBe("image/png");
expect(dispatchedCtx?.MediaPaths).toEqual([dispatchedCtx?.MediaPath]);
expect(dispatchedCtx?.MediaTypes).toEqual(["image/png"]);
expect(dispatchedCtx).not.toBeNull();
if (!dispatchedCtx) {
throw new Error("expected dispatched context");
}
const mediaCtx: {
MediaPath?: string;
MediaPaths?: string[];
MediaType?: string;
MediaTypes?: string[];
} = dispatchedCtx;
expect(mediaCtx.MediaPath).toEqual(expect.stringContaining("red-top-blue-bottom"));
expect(mediaCtx.MediaType).toBe("image/png");
expect(mediaCtx.MediaPaths).toEqual([mediaCtx.MediaPath]);
expect(mediaCtx.MediaTypes).toEqual(["image/png"]);
} finally {
abort.abort();
await task;

4
pnpm-lock.yaml generated
View File

@@ -962,6 +962,10 @@ importers:
version: link:../..
extensions/qa-lab:
dependencies:
playwright-core:
specifier: 1.59.1
version: 1.59.1
devDependencies:
'@openclaw/plugin-sdk':
specifier: workspace:*