Update editor store tests with initialRotationDegrees and initialSize

This commit is contained in:
2026-04-04 19:33:55 +02:00
parent d9b6dcf85d
commit e99a8ece66

View File

@@ -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
}
}
});