From 3c658a6fc6d164df6b9472a9265f31548e2c4d81 Mon Sep 17 00:00:00 2001 From: Nick Sandstrom <32273437+nick4810@users.noreply.github.com> Date: Thu, 9 Jul 2026 01:44:04 -0700 Subject: [PATCH] Fixed mock path --- frontend/src/components/__tests__/PluginDetailPanel.test.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/__tests__/PluginDetailPanel.test.jsx b/frontend/src/components/__tests__/PluginDetailPanel.test.jsx index d92c0fb6..07722ee1 100644 --- a/frontend/src/components/__tests__/PluginDetailPanel.test.jsx +++ b/frontend/src/components/__tests__/PluginDetailPanel.test.jsx @@ -3,7 +3,7 @@ import { describe, it, expect, vi, beforeEach } from 'vitest'; import PluginDetailPanel from '../PluginDetailPanel'; // ── Utility mocks ────────────────────────────────────────────────────────────── -vi.mock('../pluginUtils.js', () => ({ +vi.mock('../../utils/components/pluginUtils.js', () => ({ compareVersions: vi.fn(), buildCompatibilityTooltip: vi.fn(), buildVersionSelectItems: vi.fn(),