From d49246788f83d555cf26bfde69044ee3fbce9faf Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Wed, 30 May 2018 09:11:57 +0200 Subject: [PATCH] smoketest: use yarn --- test/smoke/src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' }); } }