From b06f6f3f48140d0e45eabd961783546e0283357d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 12:04:31 +0000 Subject: [PATCH] chore: apply automated fixes --- test/plugin.test.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/plugin.test.ts b/test/plugin.test.ts index f81e84a..95dc450 100644 --- a/test/plugin.test.ts +++ b/test/plugin.test.ts @@ -25,11 +25,9 @@ describe("plugin:rollup", () => { it("esmImport", async () => { const name = "rollup-esm"; - const { output } = await _rollupBuild( - "fixture/dynamic-import.mjs", - name, - { esmImport: true }, - ); + const { output } = await _rollupBuild("fixture/dynamic-import.mjs", name, { + esmImport: true, + }); const code = (output[1] && "code" in output[1] && output[1].code) || ""; const esmImport = code.match(/["'](.+wasm)["']/)?.[1];