Update tests to include initialGeometry for brushes

This commit is contained in:
2026-04-05 02:59:40 +02:00
parent f35cf82574
commit 733295b36c
3 changed files with 29 additions and 8 deletions

View File

@@ -303,7 +303,8 @@ describe("transform foundation integration", () => {
},
size: {
...brush.size
}
},
geometry: createBoxBrush({ size: brush.size }).geometry
}
};
@@ -343,7 +344,8 @@ describe("transform foundation integration", () => {
},
size: {
...brush.size
}
},
geometry: createBoxBrush({ size: brush.size }).geometry
}
};
@@ -374,7 +376,14 @@ describe("transform foundation integration", () => {
x: 3.5,
y: 2.5,
z: 4.5
}
},
geometry: createBoxBrush({
size: {
x: 3.5,
y: 2.5,
z: 4.5
}
}).geometry
}
};