From bb75d408b9f6ca3a60c8fa94cf83c8abcd0dc1ea Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 9 May 2026 09:33:20 +0100 Subject: [PATCH] test: tighten bundled plugin asset assertions --- test/scripts/bundled-plugin-assets.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/scripts/bundled-plugin-assets.test.ts b/test/scripts/bundled-plugin-assets.test.ts index 249a47db9e1..acd454b9f49 100644 --- a/test/scripts/bundled-plugin-assets.test.ts +++ b/test/scripts/bundled-plugin-assets.test.ts @@ -46,10 +46,13 @@ describe("bundled plugin assets", () => { rootDir, }); - expect(hooks).toMatchObject([ + expect(hooks).toEqual([ { + aliases: ["@openclaw/canvas-plugin", "canvas", "canvas-plugin"], command: "node scripts/bundle-a2ui.mjs", + packageName: "@openclaw/canvas-plugin", phase: "build", + pluginDir: path.join(rootDir, "extensions", "canvas"), pluginId: "canvas", }, ]);