Skip to content

Commit

Permalink
chore: try await execa
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahetter committed Nov 17, 2023
1 parent 6fd7917 commit d655ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/utils/dev-server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const startServer = async ({
baseArgs.push('--context', context)
}

const ps = execa(cliPath, [...baseArgs, ...args], getExecaOptions({ cwd, env }))
const ps = await execa(cliPath, [...baseArgs, ...args], getExecaOptions({ cwd, env }))

if (process.env.DEBUG_TESTS) {
ps.stderr.pipe(process.stderr)
Expand Down

0 comments on commit d655ea1

Please sign in to comment.