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
commitd69fe3a8d2e1c5d49fe08aa3d974fc37cee9ca93 (patch)
tree68204dbd11dca7d6a70e5139fecff5d05bc33823 /packages/integrations/cloudflare/test/basics.test.js
parent16af1709a57066a1cce443c1d769e7304ebd4101 (diff)
downloadastro-d69fe3a8d2e1c5d49fe08aa3d974fc37cee9ca93.tar.gz
astro-d69fe3a8d2e1c5d49fe08aa3d974fc37cee9ca93.tar.zst
astro-d69fe3a8d2e1c5d49fe08aa3d974fc37cee9ca93.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');
});
});