From 3e9e052d5db60329f5f3448920e0e855db69b0fc Mon Sep 17 00:00:00 2001 From: Alexander Eichhorn Date: Mon, 6 Apr 2026 23:32:10 +0200 Subject: [PATCH] feat: full canvas workflow integration for external models - Update buildExternalGraph test to include dimensions in mock params --- .../nodes/util/graph/generation/buildExternalGraph.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildExternalGraph.test.ts b/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildExternalGraph.test.ts index 561453fc4e..f1fa54b4e0 100644 --- a/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildExternalGraph.test.ts +++ b/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildExternalGraph.test.ts @@ -82,6 +82,7 @@ beforeEach(() => { mockParams = { steps: 20, guidance: 4.5, + dimensions: { width: 768, height: 512, aspectRatio: { id: '3:2', value: 1.5, isLocked: true } }, } as ParamsState; mockSizes = { scaledSize: { width: 768, height: 512 } };