summaryrefslogtreecommitdiff
path: root/packages/integrations/deno/test/basics.test.js
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-04-15 21:02:19 +0000
committerGravatar github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-04-15 21:02:19 +0000
commit089ce68f081787c33bf784f8148eb5c8af8af5da (patch)
tree5d2171819c07ae9808a6d9a9e98b7fa9ddc8b875 /packages/integrations/deno/test/basics.test.js
parente5383cd3576f858bf65f6d460de397c4f2dae208 (diff)
downloadastro-089ce68f081787c33bf784f8148eb5c8af8af5da.tar.gz
astro-089ce68f081787c33bf784f8148eb5c8af8af5da.tar.zst
astro-089ce68f081787c33bf784f8148eb5c8af8af5da.zip
[ci] format
Diffstat (limited to 'packages/integrations/deno/test/basics.test.js')
-rw-r--r--packages/integrations/deno/test/basics.test.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/deno/test/basics.test.js b/packages/integrations/deno/test/basics.test.js
index 6efb3b0d5..115883466 100644
--- a/packages/integrations/deno/test/basics.test.js
+++ b/packages/integrations/deno/test/basics.test.js
@@ -27,12 +27,12 @@ Deno.test({
const doc = new DOMParser().parseFromString(html, `text/html`);
const link = doc.querySelector('link');
const href = link.getAttribute('href');
-
+
resp = await fetch(new URL(href, 'http://127.0.0.1:8085/'));
assertEquals(resp.status, 200);
const ct = resp.headers.get('content-type');
assertEquals(ct, 'text/css');
- await resp.body.cancel()
+ await resp.body.cancel();
});
- }
-})
+ },
+});