test(plugins): drop duplicate bundle command mock

This commit is contained in:
Peter Steinberger
2026-04-26 04:44:45 +01:00
parent 540c70d166
commit 38e61e0046

View File

@@ -34,12 +34,6 @@ vi.mock("./config-state.js", async (importOriginal) => ({
}) => ({
activated: params.config?.entries?.[params.id]?.enabled !== false,
}),
resolveEffectiveEnableState: (params: {
config?: { entries?: Record<string, { enabled?: boolean }> };
id: string;
}) => ({
enabled: params.config?.entries?.[params.id]?.enabled !== false,
}),
}));
const { loadEnabledClaudeBundleCommands } = await import("./bundle-commands.js");