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

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' });
}
}