summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Florian Lefebvre <ematipico@users.noreply.github.com> 2023-12-20 11:55:33 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-12-20 11:55:33 +0000
commit1f3d72b8d3e961951a31b4b309ac9467f7c1cb74 (patch)
tree6ad10a8f6ad84b171d10e552148d4cead3c682fc
parente83b5095f164f48ba40fc715a805fc66a3e39dcf (diff)
downloadastro-1f3d72b8d3e961951a31b4b309ac9467f7c1cb74.tar.gz
astro-1f3d72b8d3e961951a31b4b309ac9467f7c1cb74.tar.zst
astro-1f3d72b8d3e961951a31b4b309ac9467f7c1cb74.zip
[ci] format
-rw-r--r--packages/astro/test/cli.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/test/cli.test.js b/packages/astro/test/cli.test.js
index 30461823c..b276e74a4 100644
--- a/packages/astro/test/cli.test.js
+++ b/packages/astro/test/cli.test.js
@@ -104,7 +104,7 @@ describe('astro cli', () => {
const proc = cli('dev', '--root', fileURLToPath(projectRootURL));
const { messages } = await parseCliDevStart(proc);
- const index = messages[0].includes("[vite]") ? 1 : 0
+ const index = messages[0].includes('[vite]') ? 1 : 0;
expect(messages[index]).to.contain('astro');
expect(messages[index]).to.contain(pkgVersion);