diff options
Diffstat (limited to 'packages/create-astro/test/project-name.test.js')
-rw-r--r-- | packages/create-astro/test/project-name.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/test/project-name.test.js b/packages/create-astro/test/project-name.test.js index 8f14969e2..0aebd1c79 100644 --- a/packages/create-astro/test/project-name.test.js +++ b/packages/create-astro/test/project-name.test.js @@ -56,7 +56,7 @@ describe('project name', async () => { assert.equal(context.projectName, 'foobar'); }); - it('head and tail blank spaces should be trimed', async () => { + it('head and tail blank spaces should be trimmed', async () => { const context = { projectName: '', cwd: '', prompt: () => ({ name: ' foobar ' }) }; await projectName(context); assert.equal(context.cwd, 'foobar'); |