diff options
author | 2023-02-06 16:21:48 +0000 | |
---|---|---|
committer | 2023-02-06 16:21:48 +0000 | |
commit | 6a59531ff9322b3a3fc288487148d77646a8ffc9 (patch) | |
tree | 24d6c99562a3abf8d5c179b13c1ffdb7bacb7ead /packages/create-astro/test/intro.test.js | |
parent | 8d2187d8b8587b2a3a0207d9ffa8667c43686436 (diff) | |
download | astro-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.js | 6 |
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; - }) -}) + }); +}); |