summaryrefslogtreecommitdiff
path: root/packages/create-astro/test/template.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/create-astro/test/template.test.js')
-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;
+ });
});