Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Mar 8, 2024
1 parent 36306dc commit c243904
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/utils/mocks/setup/cliui.mock.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {beforeEach, vi} from "vitest";
import {ui} from "../../src/lib/logging";
import {ui} from "../../src";

vi.mock('../../src/lib/logging', async () => {
const module = await vi.importActual('../../src/lib/logging');
const module = await vi.importActual('../../src');

(module['ui'] as () => {switchMode: (mode: string) => void})().switchMode('raw');
return module;
Expand Down

0 comments on commit c243904

Please sign in to comment.