chore: Fix types in tests 45/N.

This commit is contained in:
cpojer
2026-02-17 15:49:07 +09:00
parent 52ad28e097
commit 048e29ea35
13 changed files with 67 additions and 27 deletions

View File

@@ -180,7 +180,7 @@ describe("browser extension install (fs-mocked)", () => {
const { Command } = await import("commander");
const program = new Command();
const browser = program.command("browser").option("--json", false);
const browser = program.command("browser").option("--json", "JSON output", false);
registerBrowserExtensionCommands(
browser,
(cmd) => cmd.parent?.opts?.() as { json?: boolean },