summaryrefslogtreecommitdiff
path: root/packages/integrations/deno/test/basics.test.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2022-04-20 17:17:36 -0400
committerGravatar Matthew Phillips <matthew@skypack.dev> 2022-04-20 17:17:36 -0400
commite621c2f7d3844e950168f4198e4dd1c6f43031d0 (patch)
tree6c8cdae67acb0957054f2d1bcad832beb784d356 /packages/integrations/deno/test/basics.test.js
parent700d4f9649b72e98a56586a480e6d3c413cf45f1 (diff)
downloadastro-e621c2f7d3844e950168f4198e4dd1c6f43031d0.tar.gz
astro-e621c2f7d3844e950168f4198e4dd1c6f43031d0.tar.zst
astro-e621c2f7d3844e950168f4198e4dd1c6f43031d0.zip
Revert "Fixes using React.lazy and Suspense"
This reverts commit 700d4f9649b72e98a56586a480e6d3c413cf45f1.
Diffstat (limited to 'packages/integrations/deno/test/basics.test.js')
-rw-r--r--packages/integrations/deno/test/basics.test.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/integrations/deno/test/basics.test.js b/packages/integrations/deno/test/basics.test.js
index 42efc87d9..115883466 100644
--- a/packages/integrations/deno/test/basics.test.js
+++ b/packages/integrations/deno/test/basics.test.js
@@ -13,9 +13,6 @@ Deno.test({
assertEquals(resp.status, 200);
const html = await resp.text();
assert(html);
- const doc = new DOMParser().parseFromString(html, `text/html`);
- const div = doc.querySelector("#react");
- assert(div, 'div exists');
});
},
});