Unfix additional test

This commit is contained in:
Austin Mroz
2025-12-12 11:09:14 -08:00
parent ab3f3bc2eb
commit 231d658be8

View File

@@ -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())