diff --git a/test/lib/create-next-install.js b/test/lib/create-next-install.js index f17be44eb93cb..0f22bf60e207f 100644 --- a/test/lib/create-next-install.js +++ b/test/lib/create-next-install.js @@ -114,16 +114,12 @@ async function createNextInstall({ if (process.env.NEXT_TEST_PREFER_OFFLINE === '1') { args.push('--prefer-offline') } - - await execa( - 'pnpm', - args, - { - cwd: installDir, - stdio: ['ignore', 'inherit', 'inherit'], - env: process.env, - } - ) + + await execa('pnpm', args, { + cwd: installDir, + stdio: ['ignore', 'inherit', 'inherit'], + env: process.env, + }) }) }