From ec6c5e0cef46a28853a4d2b05e5e8a7030747b38 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 01:43:08 +0200 Subject: [PATCH] Update toggle visibility effect in project sequence steps --- tests/domain/project-sequence-steps.test.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/domain/project-sequence-steps.test.ts b/tests/domain/project-sequence-steps.test.ts index 673f3a22..f3343f50 100644 --- a/tests/domain/project-sequence-steps.test.ts +++ b/tests/domain/project-sequence-steps.test.ts @@ -73,9 +73,12 @@ describe("project sequence steps", () => { expect(getInteractionLinkSequenceSteps(visibilityLink)).toEqual([ { stepClass: "impulse", - type: "toggleVisibility", - targetBrushId: "brush-main", - visible: false + type: "setVisibility", + target: { + kind: "brush", + brushId: "brush-main" + }, + mode: "hide" } ]); });