From 04f76a8fdbd1f64b249e21af5935f0876c7c3878 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 27 Apr 2026 09:52:50 +0100 Subject: [PATCH] test: remove duplicate plugin enable mock --- src/plugins/bundle-commands.test.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/plugins/bundle-commands.test.ts b/src/plugins/bundle-commands.test.ts index 5897b8cb356..d29ad1e2469 100644 --- a/src/plugins/bundle-commands.test.ts +++ b/src/plugins/bundle-commands.test.ts @@ -21,12 +21,6 @@ vi.mock("./config-state.js", () => ({ hasExplicitPluginConfig: (plugins?: { entries?: Record }) => Boolean(plugins?.entries && Object.keys(plugins.entries).length > 0), normalizePluginsConfig: (plugins?: unknown) => plugins, - resolveEffectiveEnableState: (params: { - config?: { entries?: Record }; - id: string; - }) => ({ - enabled: params.config?.entries?.[params.id]?.enabled !== false, - }), resolveEffectivePluginActivationState: (params: { config?: { entries?: Record }; id: string;