summaryrefslogtreecommitdiff
path: root/packages/astro/test/html-page.test.js
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2022-07-22 15:34:44 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2022-07-22 15:34:44 +0000
commit4819e7b071b20911dbb16b0701138655ef97cd62 (patch)
tree34086bfa050ee8194cc3019a6a2366e6db015602 /packages/astro/test/html-page.test.js
parent7250e4e86da41e7c662afa4b67f7cefc7da15e69 (diff)
downloadastro-4819e7b071b20911dbb16b0701138655ef97cd62.tar.gz
astro-4819e7b071b20911dbb16b0701138655ef97cd62.tar.zst
astro-4819e7b071b20911dbb16b0701138655ef97cd62.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/astro/test/html-page.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/html-page.test.js b/packages/astro/test/html-page.test.js
index fe4c01f68..8fc45a384 100644
--- a/packages/astro/test/html-page.test.js
+++ b/packages/astro/test/html-page.test.js
@@ -18,7 +18,7 @@ describe('HTML Page', () => {
it('works', async () => {
const html = await fixture.readFile('/index.html');
- const $ = cheerio.load(html)
+ const $ = cheerio.load(html);
const h1 = $('h1');
@@ -43,7 +43,7 @@ describe('HTML Page', () => {
expect(res.status).to.equal(200);
const html = await res.text();
- const $ = cheerio.load(html)
+ const $ = cheerio.load(html);
const h1 = $('h1');