From fe6c02ba55ed955bbaef354646956b06ce49022d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 13:58:27 +0200 Subject: [PATCH] Update effect property to effects array in project-document-json.test.ts --- .../project-document-json.test.ts | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/tests/serialization/project-document-json.test.ts b/tests/serialization/project-document-json.test.ts index 067e5bb9..1b4476ac 100644 --- a/tests/serialization/project-document-json.test.ts +++ b/tests/serialization/project-document-json.test.ts @@ -663,14 +663,16 @@ describe("project document JSON", () => { kind: "actor", actorId: legacyNpc.actorId }, - effect: { - type: "setActorPresence", - target: { - kind: "actor", - actorId: legacyNpc.actorId - }, - active: true - } + effects: [ + { + type: "setActorPresence", + target: { + kind: "actor", + actorId: legacyNpc.actorId + }, + active: true + } + ] }) }); });