Skip to content

Commit

Permalink
replace uknown with string[]
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-piotrowicz committed Aug 23, 2023
1 parent f5ce456 commit 8853ae4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, expect, test, vi } from "vitest";
import { parseArgs } from "../args";

vi.mock("yargs/helpers", () => ({ hideBin: (x: unknown) => x }));
vi.mock("yargs/helpers", () => ({ hideBin: (x: string[]) => x }));

describe("Cli", () => {
describe("parseArgs", () => {
Expand Down

0 comments on commit 8853ae4

Please sign in to comment.