diff --git a/tests/unit/app-project-persistence.integration.test.tsx b/tests/unit/app-project-persistence.integration.test.tsx index 96192a69..038198a9 100644 --- a/tests/unit/app-project-persistence.integration.test.tsx +++ b/tests/unit/app-project-persistence.integration.test.tsx @@ -4,6 +4,7 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; const { MockViewportHost, viewportHostInstances } = vi.hoisted(() => { const viewportHostInstances: Array<{ setTransformCommitHandler: ReturnType; + setRenderEnabled: ReturnType; mount: ReturnType; dispose: ReturnType; updateWorld: ReturnType; @@ -30,6 +31,7 @@ const { MockViewportHost, viewportHostInstances } = vi.hoisted(() => { class MockViewportHost { setPanelId = vi.fn(); + setRenderEnabled = vi.fn(); mount = vi.fn(); dispose = vi.fn(); updateWorld = vi.fn();