From 4d425b46fcd6ee409c812d4deaed03b094819ab1 Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 11 Nov 2022 16:04:21 +0000 Subject: [PATCH] [ci] format --- packages/astro/test/dev-routing.test.js | 4 ++-- 1 file 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'); }); }); });