From e139329955f6012e2037fc622cfd27f34cf98af5 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 11 May 2026 14:10:25 +0200 Subject: [PATCH] Update transform operation tests to reflect supported rotation capability --- tests/domain/transform-session.command.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/domain/transform-session.command.test.ts b/tests/domain/transform-session.command.test.ts index 76ad9221..4fbc5287 100644 --- a/tests/domain/transform-session.command.test.ts +++ b/tests/domain/transform-session.command.test.ts @@ -1890,7 +1890,7 @@ describe("transform session commit commands", () => { expect(store.getState().document.entities[entityB.id]).toEqual(entityB); }); - it("disables unsupported mixed-capability entity rotation for batch selections", () => { + it("disables unsupported mixed-capability entity scaling for batch selections", () => { const playerStart = createPlayerStartEntity({ id: "entity-mixed-player-start" }); @@ -1914,7 +1914,7 @@ describe("transform session commit commands", () => { } expect(supportsTransformOperation(target, "translate")).toBe(true); - expect(supportsTransformOperation(target, "rotate")).toBe(false); + expect(supportsTransformOperation(target, "rotate")).toBe(true); expect(supportsTransformOperation(target, "scale")).toBe(false); }); });