summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/test/test-utils.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/test-utils.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/test-utils.js')
-rw-r--r--packages/integrations/cloudflare/test/test-utils.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/integrations/cloudflare/test/test-utils.js b/packages/integrations/cloudflare/test/test-utils.js
index e0f521949..58cb8f9dd 100644
--- a/packages/integrations/cloudflare/test/test-utils.js
+++ b/packages/integrations/cloudflare/test/test-utils.js
@@ -57,11 +57,6 @@ export function runCLI(basePath, { silent }) {
ready,
stop() {
p.kill();
- return new Promise((resolve) => {
- p.addListener('exit', () => {
- resolve();
- });
- });
},
};
}