From e74f2e1501b47f88d0df99bff2cba7aa3f4bec41 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 26 Apr 2026 04:39:51 +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 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");