From d9747a1d504a9cbaf2a2a0b010feb13425be541e Mon Sep 17 00:00:00 2001 From: Alex Grozav Date: Mon, 3 Aug 2026 17:01:24 +0300 Subject: [PATCH] test(editor): Remove a dead `vi.mock` of an unresolvable path in `ReadyToRunButton` test (no-changelog) (#35438) Co-authored-by: multica-agent --- .../readyToRun/components/ReadyToRunButton.test.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/frontend/editor-ui/src/features/workflows/readyToRun/components/ReadyToRunButton.test.ts b/packages/frontend/editor-ui/src/features/workflows/readyToRun/components/ReadyToRunButton.test.ts index c193a5b6f28..f331bc7cdc4 100644 --- a/packages/frontend/editor-ui/src/features/workflows/readyToRun/components/ReadyToRunButton.test.ts +++ b/packages/frontend/editor-ui/src/features/workflows/readyToRun/components/ReadyToRunButton.test.ts @@ -8,12 +8,6 @@ import { useSourceControlStore } from '@/features/integrations/sourceControl.ee/ import { useFoldersStore } from '@/features/core/folders/folders.store'; import type { Project } from '@/features/collaboration/projects/projects.types'; -vi.mock('@/composables/useToast', () => ({ - useToast: () => ({ - showError: vi.fn(), - }), -})); - vi.mock('@/features/collaboration/projects/composables/useProjectPages', () => ({ useProjectPages: () => ({ isOverviewSubPage: false,