diff options
author | 2023-09-22 13:20:50 +0000 | |
---|---|---|
committer | 2023-09-22 13:20:50 +0000 | |
commit | f35a55bd4f5c722a82326f351e1adb448b6f9476 (patch) | |
tree | e2cf01a9d7370a4fd32fe41d1e2d30beb7c64ca7 /packages/create-astro/test/template.test.js | |
parent | b64dd45c0d641f9f2ed997e2cbdf8a6b0193195f (diff) | |
download | astro-f35a55bd4f5c722a82326f351e1adb448b6f9476.tar.gz astro-f35a55bd4f5c722a82326f351e1adb448b6f9476.tar.zst astro-f35a55bd4f5c722a82326f351e1adb448b6f9476.zip |
[ci] format
Diffstat (limited to '')
-rw-r--r-- | packages/create-astro/test/template.test.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/create-astro/test/template.test.js b/packages/create-astro/test/template.test.js index cf6b45f77..aef7e1944 100644 --- a/packages/create-astro/test/template.test.js +++ b/packages/create-astro/test/template.test.js @@ -34,10 +34,10 @@ describe('template', () => { expect(fixture.hasMessage('Using blog as project template')).to.be.true; }); - it('minimal (--yes)', async () => { - const context = { template: 'minimal', cwd: '', dryRun: true, yes: true, prompt: () => {} }; - await template(context); + it('minimal (--yes)', async () => { + const context = { template: 'minimal', cwd: '', dryRun: true, yes: true, prompt: () => {} }; + await template(context); - expect(fixture.hasMessage('Using minimal as project template')).to.be.true; - }) + expect(fixture.hasMessage('Using minimal as project template')).to.be.true; + }); }); |