diff options
author | 2022-10-26 15:16:54 +0000 | |
---|---|---|
committer | 2022-10-26 15:16:54 +0000 | |
commit | 814327f4091521b3f5b9b081cbedb4697ed0cf98 (patch) | |
tree | 6d5253e0784383acf75e59a3eeef09e8863852c5 /packages/create-astro/test/utils.js | |
parent | 0bf0758fb831a91f6628e10a5baabf02f30f1f41 (diff) | |
download | astro-814327f4091521b3f5b9b081cbedb4697ed0cf98.tar.gz astro-814327f4091521b3f5b9b081cbedb4697ed0cf98.tar.zst astro-814327f4091521b3f5b9b081cbedb4697ed0cf98.zip |
[ci] format
Diffstat (limited to 'packages/create-astro/test/utils.js')
-rw-r--r-- | packages/create-astro/test/utils.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/create-astro/test/utils.js b/packages/create-astro/test/utils.js index dc161163b..46a671def 100644 --- a/packages/create-astro/test/utils.js +++ b/packages/create-astro/test/utils.js @@ -42,7 +42,9 @@ export const PROMPT_MESSAGES = { }; export function setup(args = []) { - const { stdout, stdin } = execa('../create-astro.mjs', [...args, '--skip-houston', '--dryrun'], { cwd: testDir }); + const { stdout, stdin } = execa('../create-astro.mjs', [...args, '--skip-houston', '--dryrun'], { + cwd: testDir, + }); return { stdin, stdout, |