summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-11-11 16:04:21 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-11-11 16:04:21 +0000
commit4d425b46fcd6ee409c812d4deaed03b094819ab1 (patch)
treeeb11d5f975937aa9468fd3e66f479cc9b0dc1d7e
parentf3181b5adf2c7c9157a59f409962274cda3f77ab (diff)
downloadastro-4d425b46fcd6ee409c812d4deaed03b094819ab1.tar.gz
astro-4d425b46fcd6ee409c812d4deaed03b094819ab1.tar.zst
astro-4d425b46fcd6ee409c812d4deaed03b094819ab1.zip
[ci] format
-rw-r--r--packages/astro/test/dev-routing.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/dev-routing.test.js b/packages/astro/test/dev-routing.test.js
index 5b46cf249..e7e5c82c5 100644
--- a/packages/astro/test/dev-routing.test.js
+++ b/packages/astro/test/dev-routing.test.js
@@ -326,13 +326,13 @@ describe('Development Routing', () => {
it('200 when loading /html-ext/1', async () => {
const response = await fixture.fetch('/html-ext/1');
expect(response.status).to.equal(200);
- expect(await response.text()).includes('none: 1')
+ expect(await response.text()).includes('none: 1');
});
it('200 when loading /html-ext/1.html', async () => {
const response = await fixture.fetch('/html-ext/1.html');
expect(response.status).to.equal(200);
- expect(await response.text()).includes('html: 1')
+ expect(await response.text()).includes('html: 1');
});
});
});