diff --git a/test/smoke/src/main.ts b/test/smoke/src/main.ts index 9d2262a1dc7..69caa041d41 100644 --- a/test/smoke/src/main.ts +++ b/test/smoke/src/main.ts @@ -188,8 +188,8 @@ async function setupRepository(): Promise { cp.spawnSync('git', ['clean', '-xdf'], { cwd: workspacePath }); } - console.log('*** Running npm install...'); - cp.execSync('npm install', { cwd: workspacePath, stdio: 'inherit' }); + console.log('*** Running yarn...'); + cp.execSync('yarn', { cwd: workspacePath, stdio: 'inherit' }); } }