From 231d658be857e9b1a9f293f092bb139378dfa5d2 Mon Sep 17 00:00:00 2001 From: Austin Mroz Date: Fri, 12 Dec 2025 11:09:14 -0800 Subject: [PATCH] Unfix additional test --- src/stores/subgraphNavigationStore.test.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/stores/subgraphNavigationStore.test.ts b/src/stores/subgraphNavigationStore.test.ts index ba1a0b28d..d7753bb0c 100644 --- a/src/stores/subgraphNavigationStore.test.ts +++ b/src/stores/subgraphNavigationStore.test.ts @@ -1,6 +1,6 @@ import { createPinia, setActivePinia } from 'pinia' import { beforeEach, describe, expect, it, vi } from 'vitest' -import { nextTick, ref } from 'vue' +import { nextTick } from 'vue' import { useWorkflowStore } from '@/platform/workflow/management/stores/workflowStore' import type { ComfyWorkflow } from '@/platform/workflow/management/stores/workflowStore' @@ -44,10 +44,6 @@ vi.mock('@/utils/graphTraversalUtil', () => ({ findSubgraphPathById: vi.fn() })) -vi.mock('@vueuse/router', () => ({ - useRouteHash: () => ref('') -})) - describe('useSubgraphNavigationStore', () => { beforeEach(() => { setActivePinia(createPinia())