chore: increase timeout for component tests (#13913)
This commit is contained in:
parent
214117c9c5
commit
fee35346f7
|
|
@ -9,7 +9,7 @@ for (const dir of fs.readdirSync(__dirname)) {
|
||||||
if (!fs.statSync(folder).isDirectory())
|
if (!fs.statSync(folder).isDirectory())
|
||||||
continue;
|
continue;
|
||||||
test.describe.serial(path.basename(folder), () => {
|
test.describe.serial(path.basename(folder), () => {
|
||||||
test.setTimeout(180000);
|
test.setTimeout(7 * 60 * 1000 /* 7 minutes */);
|
||||||
test('install', async () => {
|
test('install', async () => {
|
||||||
await run('npm', ['i'], folder);
|
await run('npm', ['i'], folder);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue