fix: cleanup

This commit is contained in:
findthelorax
2026-04-19 22:03:03 -04:00
committed by Pouzor
parent 340bd15099
commit 3028e5a3f7
2 changed files with 2 additions and 7 deletions
@@ -20,9 +20,7 @@ vi.mock('@/stores/themeStore', () => ({
}))
vi.mock('@/stores/canvasStore', () => ({
useCanvasStore: (sel: (s: { hideIp: boolean }) => unknown) => sel({
hideIp: false,
}),
useCanvasStore: (sel: (s: { hideIp: boolean }) => unknown) => sel({ hideIp: false }),
}))
vi.mock('@/utils/themes', () => ({
@@ -64,9 +62,7 @@ vi.mock('@/utils/handleUtils', () => ({
clampBottomHandles: (n: unknown) => typeof n === 'number' ? n : 1,
}))
beforeEach(() => {
mockZoom = 1
})
beforeEach(() => { mockZoom = 1 })
function makeNode(data: Partial<NodeData>): Node<NodeData> {
return {
@@ -121,7 +121,6 @@ export function BaseNode({ id, data, selected, icon: typeIcon, width, height }:
</div>
))}
</div>
</div>
{/* Properties section (new system) */}