diff options
author | 2023-08-15 12:10:51 -0500 | |
---|---|---|
committer | 2023-08-15 12:10:51 -0500 | |
commit | 74df833708ddb4eb3dc881cae9100cd615aa6add (patch) | |
tree | 746e1931cb3b6d4dc57908731e6096e9bde35c71 /packages/integrations/cloudflare/test/basics.test.js | |
parent | 087270c61fd5c91ddd37db5c8fd93a8a0ef41f94 (diff) | |
download | astro-74df833708ddb4eb3dc881cae9100cd615aa6add.tar.gz astro-74df833708ddb4eb3dc881cae9100cd615aa6add.tar.zst astro-74df833708ddb4eb3dc881cae9100cd615aa6add.zip |
Update wrangler (#8081)
* chore: update wrangler
* chore(cloudflare): update tests to support wrangler@3
* chore(cloudflare): update debug message
* chore: force ci
Diffstat (limited to 'packages/integrations/cloudflare/test/basics.test.js')
-rw-r--r-- | packages/integrations/cloudflare/test/basics.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/cloudflare/test/basics.test.js b/packages/integrations/cloudflare/test/basics.test.js index 9aa78f98e..c27b6be6c 100644 --- a/packages/integrations/cloudflare/test/basics.test.js +++ b/packages/integrations/cloudflare/test/basics.test.js @@ -14,7 +14,7 @@ describe('Basic app', () => { }); await fixture.build(); - cli = runCLI('./fixtures/basics/', { silent: true, port: 8789 }); + cli = await runCLI('./fixtures/basics/', { silent: true, port: 8789 }); await cli.ready; }); @@ -23,7 +23,7 @@ describe('Basic app', () => { }); it('can render', async () => { - let res = await fetch(`http://localhost:8789/`); + let res = await fetch(`http://127.0.0.1:8789/`); expect(res.status).to.equal(200); let html = await res.text(); let $ = cheerio.load(html); |