summaryrefslogtreecommitdiff
path: root/packages/create-astro/test/intro.test.js
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2023-02-06 16:21:48 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2023-02-06 16:21:48 +0000
commit6a59531ff9322b3a3fc288487148d77646a8ffc9 (patch)
tree24d6c99562a3abf8d5c179b13c1ffdb7bacb7ead /packages/create-astro/test/intro.test.js
parent8d2187d8b8587b2a3a0207d9ffa8667c43686436 (diff)
downloadastro-6a59531ff9322b3a3fc288487148d77646a8ffc9.tar.gz
astro-6a59531ff9322b3a3fc288487148d77646a8ffc9.tar.zst
astro-6a59531ff9322b3a3fc288487148d77646a8ffc9.zip
[ci] format
Diffstat (limited to 'packages/create-astro/test/intro.test.js')
-rw-r--r--packages/create-astro/test/intro.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/create-astro/test/intro.test.js b/packages/create-astro/test/intro.test.js
index af13954d1..9014da457 100644
--- a/packages/create-astro/test/intro.test.js
+++ b/packages/create-astro/test/intro.test.js
@@ -10,11 +10,11 @@ describe('intro', () => {
await intro({ skipHouston: false, version: '0.0.0', username: 'user' });
expect(fixture.hasMessage('Houston:')).to.be.true;
expect(fixture.hasMessage('Welcome to astro v0.0.0')).to.be.true;
- })
+ });
it('--skip-houston', async () => {
await intro({ skipHouston: true, version: '0.0.0', username: 'user' });
expect(fixture.length()).to.eq(1);
expect(fixture.hasMessage('Houston:')).to.be.false;
expect(fixture.hasMessage('Launch sequence initiated')).to.be.true;
- })
-})
+ });
+});