From 56d2749b5b265a2d8f9bb9dd6cbb59e351799929 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Wed, 29 Apr 2026 05:30:11 -0700 Subject: [PATCH] test(auth): follow enabled plugin setup config --- src/commands/auth-choice.apply.plugin-provider.test.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/commands/auth-choice.apply.plugin-provider.test.ts b/src/commands/auth-choice.apply.plugin-provider.test.ts index b3142817d5b..a8a72df8efc 100644 --- a/src/commands/auth-choice.apply.plugin-provider.test.ts +++ b/src/commands/auth-choice.apply.plugin-provider.test.ts @@ -354,7 +354,15 @@ describe("applyAuthChoiceLoadedPluginProvider", () => { }); expect(resolvePluginSetupProvider).toHaveBeenCalledWith({ provider: LOCAL_PROVIDER_ID, - config: {}, + config: { + plugins: { + entries: { + "local-provider-plugin": { + enabled: true, + }, + }, + }, + }, workspaceDir: "/tmp/workspace", env: undefined, pluginIds: ["local-provider-plugin"],