From 6fbb3ebf1a391cf937c36057deb18f5230605fed Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 27 Dec 2025 17:00:05 +0000 Subject: [PATCH] fix: Add missing bounds field to mock PenStitches in tests Co-authored-by: jhbruhn <1036566+jhbruhn@users.noreply.github.com> --- src/stores/usePatternStore.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stores/usePatternStore.test.ts b/src/stores/usePatternStore.test.ts index 72550e3..511ba78 100644 --- a/src/stores/usePatternStore.test.ts +++ b/src/stores/usePatternStore.test.ts @@ -25,6 +25,7 @@ const createMockPesData = ( penStitches: { stitches: [], colorBlocks: [], + bounds: { minX: 0, maxX: 0, minY: 0, maxY: 0 }, }, colorCount: 1, stitchCount: 1,