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.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/cloudflare/test/basics.test.js b/packages/integrations/cloudflare/test/basics.test.js
index a6229bbb2..d382a9084 100644
--- a/packages/integrations/cloudflare/test/basics.test.js
+++ b/packages/integrations/cloudflare/test/basics.test.js
@@ -14,19 +14,19 @@ describe.skip('Basic app', () => {
});
it('can render', async () => {
- const { ready, stop } = runCLI('./fixtures/basics/', { silent: true });
+ const { ready, stop } = runCLI('./fixtures/basics/', { silent: true, port: 8789 });
try {
await ready;
- let res = await fetch(`http://localhost:8787/`);
+ 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 {
- stop();
+ await stop();
}
});
});