diff options
author | 2023-10-24 05:14:33 +0700 | |
---|---|---|
committer | 2023-10-23 17:14:33 -0500 | |
commit | ce807a2bfef325683bfdb01065a73c4e2b0a5fe5 (patch) | |
tree | 31c8a8bdaad2af2e239d364342e40b9097a36498 /packages/create-astro/test/project-name.test.js | |
parent | e3c18be5d09cd46e6ba1c00171db7eab6ae93d6f (diff) | |
download | astro-ce807a2bfef325683bfdb01065a73c4e2b0a5fe5.tar.gz astro-ce807a2bfef325683bfdb01065a73c4e2b0a5fe5.tar.zst astro-ce807a2bfef325683bfdb01065a73c4e2b0a5fe5.zip |
feat(create-astro): automatically configure `astro check` (#8853)
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
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 1672fce66..905f4a158 100644 --- a/packages/create-astro/test/project-name.test.js +++ b/packages/create-astro/test/project-name.test.js @@ -3,7 +3,7 @@ import { expect } from 'chai'; import { projectName } from '../dist/index.js'; import { setup } from './utils.js'; -describe('project name', () => { +describe('project name', async () => { const fixture = setup(); it('pass in name', async () => { |