From 236c17c90823cc3872fcc2a6c216a81f07558c89 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 11 May 2026 21:34:02 +0200 Subject: [PATCH] Update test case to assert targetable property is true after JSON serialization --- tests/serialization/scene-document-json.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/serialization/scene-document-json.test.ts b/tests/serialization/scene-document-json.test.ts index afd99f53..2bbab820 100644 --- a/tests/serialization/scene-document-json.test.ts +++ b/tests/serialization/scene-document-json.test.ts @@ -2704,7 +2704,7 @@ describe("scene document JSON", () => { }); expect(migratedDocument.entities[silentNpc.id]).toMatchObject({ kind: "npc", - targetable: false + targetable: true }); });