summaryrefslogtreecommitdiff
path: root/packages/create-astro/test/template.test.js
diff options
context:
space:
mode:
authorGravatar bluwy <bluwy@users.noreply.github.com> 2023-09-22 13:20:50 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-09-22 13:20:50 +0000
commitf35a55bd4f5c722a82326f351e1adb448b6f9476 (patch)
treee2cf01a9d7370a4fd32fe41d1e2d30beb7c64ca7 /packages/create-astro/test/template.test.js
parentb64dd45c0d641f9f2ed997e2cbdf8a6b0193195f (diff)
downloadastro-f35a55bd4f5c722a82326f351e1adb448b6f9476.tar.gz
astro-f35a55bd4f5c722a82326f351e1adb448b6f9476.tar.zst
astro-f35a55bd4f5c722a82326f351e1adb448b6f9476.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/create-astro/test/template.test.js10
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;
+ });
});