summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/test/basics.test.js
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2023-07-17 20:30:02 +0800
committerGravatar GitHub <noreply@github.com> 2023-07-17 20:30:02 +0800
commitfcd23b4c56244fcd966828edeae288a66910bf9f (patch)
treed0ae507af73cf373394f9f17d44df5796097f44f /packages/integrations/cloudflare/test/basics.test.js
parent579d52e6533a6e1f71f4304c8ba69236ea9d6f56 (diff)
downloadastro-fcd23b4c56244fcd966828edeae288a66910bf9f.tar.gz
astro-fcd23b4c56244fcd966828edeae288a66910bf9f.tar.zst
astro-fcd23b4c56244fcd966828edeae288a66910bf9f.zip
Handle flaky tests (#7651)
Diffstat (limited to 'packages/integrations/cloudflare/test/basics.test.js')
-rw-r--r--packages/integrations/cloudflare/test/basics.test.js29
1 files changed, 15 insertions, 14 deletions
diff --git a/packages/integrations/cloudflare/test/basics.test.js b/packages/integrations/cloudflare/test/basics.test.js
index d382a9084..b97079b8f 100644
--- a/packages/integrations/cloudflare/test/basics.test.js
+++ b/packages/integrations/cloudflare/test/basics.test.js
@@ -5,28 +5,29 @@ import * as cheerio from 'cheerio';
describe.skip('Basic app', () => {
/** @type {import('./test-utils').Fixture} */
let fixture;
+ /** @type {import('./test-utils').WranglerCLI} */
+ let cli;
before(async () => {
fixture = await loadFixture({
root: './fixtures/basics/',
});
await fixture.build();
- });
- it('can render', async () => {
- const { ready, stop } = runCLI('./fixtures/basics/', { silent: true, port: 8789 });
+ cli = runCLI('./fixtures/basics/', { silent: true, port: 8789 });
+ await cli.ready;
+ });
- try {
- await ready;
+ after(async () => {
+ await cli.stop();
+ });
- let res = await fetch(`http://localhost:8789/`);
- expect(res.status).to.equal(200);
- let html = await res.text();
- let $ = cheerio.load(html);
- expect($('h1').text()).to.equal('Testing');
- expect($('#env').text()).to.equal('secret');
- } finally {
- await stop();
- }
+ it('can render', async () => {
+ let res = await fetch(`http://localhost:8789/`);
+ expect(res.status).to.equal(200);
+ let html = await res.text();
+ let $ = cheerio.load(html);
+ expect($('h1').text()).to.equal('Testing');
+ expect($('#env').text()).to.equal('secret');
});
});