summaryrefslogtreecommitdiff
path: root/packages/integrations/deno/test
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/deno/test')
-rw-r--r--packages/integrations/deno/test/basics.test.js2
-rw-r--r--packages/integrations/deno/test/helpers.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/deno/test/basics.test.js b/packages/integrations/deno/test/basics.test.js
index 93e0d5625..6f152d4f4 100644
--- a/packages/integrations/deno/test/basics.test.js
+++ b/packages/integrations/deno/test/basics.test.js
@@ -10,5 +10,5 @@ Deno.test({
const html = await resp.text();
assert(html);
});
- }
+ },
});
diff --git a/packages/integrations/deno/test/helpers.js b/packages/integrations/deno/test/helpers.js
index df4f7c934..659d24d5e 100644
--- a/packages/integrations/deno/test/helpers.js
+++ b/packages/integrations/deno/test/helpers.js
@@ -4,7 +4,7 @@ const dir = new URL('./', import.meta.url);
export async function runBuild(fixturePath) {
let proc = Deno.run({
cmd: ['node', '../../../../../astro/astro.js', 'build', '--silent'],
- cwd: fromFileUrl(new URL(fixturePath, dir))
+ cwd: fromFileUrl(new URL(fixturePath, dir)),
});
await proc.status();
return async () => await proc.close();