diff --git a/src/components/image-editor/ImageCanvasStageInteractionModel.test.ts b/src/components/image-editor/ImageCanvasStageInteractionModel.test.ts index 40625737c..c05ae0ec7 100644 --- a/src/components/image-editor/ImageCanvasStageInteractionModel.test.ts +++ b/src/components/image-editor/ImageCanvasStageInteractionModel.test.ts @@ -345,9 +345,9 @@ describe('ImageCanvasStageInteractionModel', () => { minimapScale: 0.4, moved: false, }); - expect( - updateMinimapDragMovement(minimapDrag, { x: 121, y: 90 }), - ).toBe(minimapDrag); + expect(updateMinimapDragMovement(minimapDrag, { x: 121, y: 90 })).toBe( + minimapDrag, + ); expect(updateMinimapDragMovement(minimapDrag, { x: 123, y: 90 })).toEqual({ ...minimapDrag, moved: true, @@ -385,7 +385,10 @@ describe('ImageCanvasStageInteractionModel', () => { dialog: anotherDialog, layers, generationDialogs: [dialog, anotherDialog], - selectedLayerIds: ['layer-a', getCanvasGenerationSelectionId('dialog-1')], + selectedLayerIds: [ + 'layer-a', + getCanvasGenerationSelectionId('dialog-1'), + ], isMultiSelectGesture: true, pointerId: 12, pointer: { x: 360, y: 260 },