summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/test/basics.test.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2022-07-29 10:46:09 -0400
committerGravatar GitHub <noreply@github.com> 2022-07-29 10:46:09 -0400
commit09c1e586ee8d903939903868e2a205f86dab8f11 (patch)
tree45b191fbdcb268d32511dd1fd861b065fa7a4ec3 /packages/integrations/cloudflare/test/basics.test.js
parentc15cb36636320012c7d0c9d6ac8620029da70b0b (diff)
downloadastro-09c1e586ee8d903939903868e2a205f86dab8f11.tar.gz
astro-09c1e586ee8d903939903868e2a205f86dab8f11.tar.zst
astro-09c1e586ee8d903939903868e2a205f86dab8f11.zip
Prevent hydration scripts from being rendered in the wrong order (#4080)
* Prevent hydration scripts from being rendered in the wrong order * Remove comment * Update jsx * Remove promise for stop * Try skipping lit tests * Stringify these chunks too * Unskip lit
Diffstat (limited to 'packages/integrations/cloudflare/test/basics.test.js')
-rw-r--r--packages/integrations/cloudflare/test/basics.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/cloudflare/test/basics.test.js b/packages/integrations/cloudflare/test/basics.test.js
index e6fe6642e..7e3e9bb93 100644
--- a/packages/integrations/cloudflare/test/basics.test.js
+++ b/packages/integrations/cloudflare/test/basics.test.js
@@ -25,7 +25,7 @@ describe('Basic app', () => {
let $ = cheerio.load(html);
expect($('h1').text()).to.equal('Testing');
} finally {
- await stop();
+ stop();
}
});
});