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/with-solid-js.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/with-solid-js.test.js')
-rw-r--r-- | packages/integrations/cloudflare/test/with-solid-js.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/cloudflare/test/with-solid-js.test.js b/packages/integrations/cloudflare/test/with-solid-js.test.js index 90c1c0722..c091d04b3 100644 --- a/packages/integrations/cloudflare/test/with-solid-js.test.js +++ b/packages/integrations/cloudflare/test/with-solid-js.test.js @@ -14,7 +14,7 @@ describe('With SolidJS', () => { }); await fixture.build(); - cli = runCLI('./fixtures/with-solid-js/', { silent: true, port: 8790 }); + cli = await runCLI('./fixtures/with-solid-js/', { silent: true, port: 8790 }); await cli.ready; }); @@ -23,7 +23,7 @@ describe('With SolidJS', () => { }); it('renders the solid component', async () => { - let res = await fetch(`http://localhost:8790/`); + let res = await fetch(`http://127.0.0.1:8790/`); expect(res.status).to.equal(200); let html = await res.text(); let $ = cheerio.load(html); |