From 5ff3136762a6bc7b23fb239890370ffced5fc7e5 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 09:59:54 +0200 Subject: [PATCH] Remove dialogue library resource test from scene document JSON serialization --- .../serialization/scene-document-json.test.ts | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/serialization/scene-document-json.test.ts b/tests/serialization/scene-document-json.test.ts index 8e667ce5..d837e77f 100644 --- a/tests/serialization/scene-document-json.test.ts +++ b/tests/serialization/scene-document-json.test.ts @@ -74,25 +74,6 @@ describe("scene document JSON", () => { expect(parseSceneDocumentJson(serializedDocument)).toEqual(document); }); - it("round-trips project dialogue library resources through the scene schema", () => { - const document = createEmptySceneDocument({ name: "Dialogue Scene" }); - document.dialogues.dialogues["dialogue-bell"] = { - id: "dialogue-bell", - title: "Bell Tower", - lines: [ - { - id: "dialogue-line-bell-1", - speakerName: "Watcher", - text: "The bell rings before dawn." - } - ] - }; - - expect(parseSceneDocumentJson(serializeSceneDocument(document))).toEqual( - document - ); - }); - it("round-trips authored scheduler routines in the scene document schema", () => { const npc = createNpcEntity({ id: "entity-npc-clocksmith",