summaryrefslogtreecommitdiff
path: root/packages/create-astro/test/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/create-astro/test/utils.js')
-rw-r--r--packages/create-astro/test/utils.js4
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,