From 38e61e004616ae2baaed8fa18fc2c66462160b29 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 26 Apr 2026 04:44:45 +0100 Subject: [PATCH] test(plugins): drop duplicate bundle command 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 3615ab72d3e..e1357a3e420 100644 --- a/src/plugins/bundle-commands.test.ts +++ b/src/plugins/bundle-commands.test.ts @@ -34,12 +34,6 @@ vi.mock("./config-state.js", async (importOriginal) => ({ }) => ({ activated: params.config?.entries?.[params.id]?.enabled !== false, }), - resolveEffectiveEnableState: (params: { - config?: { entries?: Record }; - id: string; - }) => ({ - enabled: params.config?.entries?.[params.id]?.enabled !== false, - }), })); const { loadEnabledClaudeBundleCommands } = await import("./bundle-commands.js");