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 + } + ] }) }); });