From 9e868dcf5aa520623cd9b79a798afcd4e23e9f4e Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 22 Feb 2026 12:56:18 +0000 Subject: [PATCH] test: remove redundant channels smoke parse case --- src/cli/program.smoke.test.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/cli/program.smoke.test.ts b/src/cli/program.smoke.test.ts index 405d23c7cf2..13572c16800 100644 --- a/src/cli/program.smoke.test.ts +++ b/src/cli/program.smoke.test.ts @@ -6,7 +6,6 @@ import { installSmokeProgramMocks, messageCommand, onboardCommand, - runChannelLogin, runTui, runtime, setupCommand, @@ -192,19 +191,4 @@ describe("cli program (smoke)", () => { runtime, ); }); - - it.each([ - { - label: "runs channels login", - argv: ["channels", "login", "--account", "work"], - expectCall: () => - expect(runChannelLogin).toHaveBeenCalledWith( - { channel: undefined, account: "work", verbose: false }, - runtime, - ), - }, - ])("channels command: $label", async ({ argv, expectCall }) => { - await runProgram(argv); - expectCall(); - }); });