summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/test/basics.test.js
diff options
context:
space:
mode:
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');
});
});