summaryrefslogtreecommitdiff
path: root/packages/integrations/deno/test/basics.test.ts
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2023-02-17 10:58:53 -0500
committerGravatar GitHub <noreply@github.com> 2023-02-17 10:58:53 -0500
commit609b249c8de936fcf263effa83a95a45747d6610 (patch)
tree030b81ae8adc1c9c5bc327b9c2e702454f718daf /packages/integrations/deno/test/basics.test.ts
parent7a717d64a477ed23341de2c055e1489590fb93bc (diff)
downloadastro-609b249c8de936fcf263effa83a95a45747d6610.tar.gz
astro-609b249c8de936fcf263effa83a95a45747d6610.tar.zst
astro-609b249c8de936fcf263effa83a95a45747d6610.zip
Revert "Deno fix #6131 (#6248)" (#6281)
* Revert "Deno fix #6131 (#6248)" This reverts commit ef5cea4dc5c4ffa33bd57ea0886e6912afb24fec. * Create gold-months-live.md
Diffstat (limited to 'packages/integrations/deno/test/basics.test.ts')
-rw-r--r--packages/integrations/deno/test/basics.test.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/packages/integrations/deno/test/basics.test.ts b/packages/integrations/deno/test/basics.test.ts
index 240a9bd4b..d1f8907cb 100644
--- a/packages/integrations/deno/test/basics.test.ts
+++ b/packages/integrations/deno/test/basics.test.ts
@@ -143,23 +143,3 @@ Deno.test({
sanitizeResources: false,
sanitizeOps: false,
});
-
-Deno.test({
- name: 'perendering',
- permissions: defaultTestPermissions,
- async fn() {
- await startApp(async (baseUrl: URL) => {
- const resp = await fetch(new URL('perendering', baseUrl));
- assertEquals(resp.status, 200);
-
- const html = await resp.text();
- assert(html);
-
- const doc = new DOMParser().parseFromString(html, `text/html`);
- const h1 = doc!.querySelector('h1');
- assertEquals(h1!.innerText, 'test');
- });
- },
- sanitizeResources: false,
- sanitizeOps: false,
-});