diff options
author | 2022-04-15 21:02:19 +0000 | |
---|---|---|
committer | 2022-04-15 21:02:19 +0000 | |
commit | 089ce68f081787c33bf784f8148eb5c8af8af5da (patch) | |
tree | 5d2171819c07ae9808a6d9a9e98b7fa9ddc8b875 /packages/integrations/deno/test/basics.test.js | |
parent | e5383cd3576f858bf65f6d460de397c4f2dae208 (diff) | |
download | astro-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.js | 8 |
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(); }); - } -}) + }, +}); |