smoketest: use yarn

This commit is contained in:
Joao Moreno
2018-05-30 09:11:57 +02:00
parent 8d21c8587a
commit d49246788f

View File

@@ -188,8 +188,8 @@ async function setupRepository(): Promise<void> {
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' });
}
}