We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1531ebc commit 7bccc66Copy full SHA for 7bccc66
1 file changed
src/cli/daemon-cli/status.print.test.ts
@@ -10,7 +10,7 @@ const resolveControlUiLinksMock = vi.hoisted(() =>
10
vi.fn((_opts?: unknown) => ({ httpUrl: "http://127.0.0.1:18789" })),
11
);
12
const isSystemdUnavailableDetailMock = vi.hoisted(() => vi.fn(() => false));
13
-const renderSystemdUnavailableHintsMock = vi.hoisted(() => vi.fn(() => []));
+const renderSystemdUnavailableHintsMock = vi.hoisted(() => vi.fn<() => string[]>(() => []));
14
15
vi.mock("../../runtime.js", () => ({
16
defaultRuntime: runtime,
0 commit comments