chore: increase timeout for component tests (#13913)

This commit is contained in:
Ross Wollman 2022-05-03 22:04:43 -07:00 committed by GitHub
parent 214117c9c5
commit fee35346f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ for (const dir of fs.readdirSync(__dirname)) {
if (!fs.statSync(folder).isDirectory())
continue;
test.describe.serial(path.basename(folder), () => {
test.setTimeout(180000);
test.setTimeout(7 * 60 * 1000 /* 7 minutes */);
test('install', async () => {
await run('npm', ['i'], folder);
});