Skip to content

Commit

Permalink
style: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lihbr committed Oct 20, 2023
1 parent e9ba134 commit 6a35c29
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/slice-machine/test/__setup__.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,9 @@ vi.mock("fs/promises", async () => {
// bypass jsdom restricted browser environment by mocking `node:url`
// to itself.
vi.mock("url", async () => {
const actual: typeof import("node:url") = (await vi.importActual(
"node:url",
));
const actual: typeof import("node:url") = await vi.importActual("node:url");

return actual;
return actual;
});

vi.mock("analytics-node", () => {
Expand Down

0 comments on commit 6a35c29

Please sign in to comment.