diff --git a/tests/bundle_test.ts b/tests/bundle_test.ts index c8546dd..90f32f2 100644 --- a/tests/bundle_test.ts +++ b/tests/bundle_test.ts @@ -43,15 +43,15 @@ Deno.test({ }); Deno.test({ - name: "minified json import", - fn: testBundle( - resolveFixture("json_import.ts"), - { minify: true }, - async ({ outputFileUrl }) => { - const output = await runModule(outputFileUrl); - assertStringIncludes(output, "with space"); - }, - ), + name: "minified json import", + fn: testBundle( + resolveFixture("json_import.ts"), + { minify: true }, + async ({ outputFileUrl }) => { + const output = await runModule(outputFileUrl); + assertStringIncludes(output, "with space"); + }, + ), }); Deno.test({