Skip to content

Commit

Permalink
test(create-astro): correct wrong argument (#5812)
Browse files Browse the repository at this point in the history
  • Loading branch information
ansidev authored Jan 10, 2023
1 parent c55fbcb commit 21a55b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/create-astro/test/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';

const __filename = fileURLToPath(import.meta.url);
export const testDir = dirname(__filename);
export const timeout = 5000;
export const timeout = 25000;

const timeoutError = function (details) {
let errorMsg = 'Timed out waiting for create-astro to respond with expected output.';
Expand Down Expand Up @@ -42,7 +42,7 @@ export const PROMPT_MESSAGES = {
};

export function setup(args = []) {
const { stdout, stdin } = execa('../create-astro.mjs', [...args, '--skip-houston', '--dryrun'], {
const { stdout, stdin } = execa('../create-astro.mjs', [...args, '--skip-houston', '--dry-run'], {
cwd: testDir,
});
return {
Expand Down

0 comments on commit 21a55b3

Please sign in to comment.