summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/space-in-folder-name.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/test/space-in-folder-name.test.js b/packages/astro/test/space-in-folder-name.test.js
index 3920e1957..2a59418ff 100644
--- a/packages/astro/test/space-in-folder-name.test.js
+++ b/packages/astro/test/space-in-folder-name.test.js
@@ -24,7 +24,7 @@ describe('Projects with a space in the folder name', () => {
});
it('Work with hoisted scripts', async () => {
- const html = await fixture.fetch('/').then(r => r.text());
+ const html = await fixture.fetch('/').then((r) => r.text());
const $ = cheerio.load(html);
expect($('script[src*="space in folder name"]')).to.have.a.lengthOf(1);