diff --git a/tests/domain/editor-store.test.ts b/tests/domain/editor-store.test.ts index 25a45fe5..88e8a136 100644 --- a/tests/domain/editor-store.test.ts +++ b/tests/domain/editor-store.test.ts @@ -283,6 +283,16 @@ describe("EditorStore", () => { x: 0, y: 1, z: 0 + }, + initialRotationDegrees: { + x: 0, + y: 0, + z: 0 + }, + initialSize: { + x: 2, + y: 2, + z: 2 } } }) @@ -303,6 +313,16 @@ describe("EditorStore", () => { x: 0, y: 1, z: 0 + }, + rotationDegrees: { + x: 0, + y: 0, + z: 0 + }, + size: { + x: 2, + y: 2, + z: 2 } } });