mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 13:10:43 +00:00
fix(ci): refresh qa-lab lockfile
This commit is contained in:
@@ -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
4
pnpm-lock.yaml
generated
@@ -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:*
|
||||
|
||||
Reference in New Issue
Block a user