Do not run yarn install as part of the smoke tests

This commit is contained in:
Ladislau Szomoru 2021-06-06 21:14:37 +02:00
parent b0509196f6
commit e2d0e05038
No known key found for this signature in database
GPG key ID: 2B88287CB9DB080B

View file

@ -207,8 +207,9 @@ async function setupRepository(): Promise<void> {
cp.spawnSync('git', ['clean', '-xdf'], { cwd: workspacePath });
}
console.log('*** Running yarn...');
cp.execSync('yarn', { cwd: workspacePath, stdio: 'inherit' });
// None of the test run the project
// console.log('*** Running yarn...');
// cp.execSync('yarn', { cwd: workspacePath, stdio: 'inherit' });
}
}