test(cli): fix option-collision mock typings
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { Command } from "commander";
|
||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||
|
||||
const updateCommand = vi.fn(async () => {});
|
||||
const updateStatusCommand = vi.fn(async () => {});
|
||||
const updateWizardCommand = vi.fn(async () => {});
|
||||
const updateCommand = vi.fn(async (_opts?: unknown) => {});
|
||||
const updateStatusCommand = vi.fn(async (_opts?: unknown) => {});
|
||||
const updateWizardCommand = vi.fn(async (_opts?: unknown) => {});
|
||||
|
||||
const defaultRuntime = {
|
||||
log: vi.fn(),
|
||||
|
||||
Reference in New Issue
Block a user