From 6a35c2955b36e61b0f6e19cb356f4203829db5c3 Mon Sep 17 00:00:00 2001 From: lihbr Date: Fri, 20 Oct 2023 14:47:19 +0200 Subject: [PATCH] style: run prettier --- packages/slice-machine/test/__setup__.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/slice-machine/test/__setup__.ts b/packages/slice-machine/test/__setup__.ts index 7fcdfac3e6..d3651ca5bf 100644 --- a/packages/slice-machine/test/__setup__.ts +++ b/packages/slice-machine/test/__setup__.ts @@ -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", () => {