mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: try increasing the timeout on windows (#10324)
This commit is contained in:
parent
b81b019083
commit
a5d4900294
@ -22,6 +22,6 @@ module.exports = {
|
|||||||
exit: !!process.env.CI,
|
exit: !!process.env.CI,
|
||||||
retries: process.env.CI ? 3 : 0,
|
retries: process.env.CI ? 3 : 0,
|
||||||
parallel: !!process.env.PARALLEL,
|
parallel: !!process.env.PARALLEL,
|
||||||
timeout: 10_000,
|
timeout: process.platform === 'win32' ? 20_000 : 10_000,
|
||||||
reporter: process.env.CI ? 'spec' : 'dot',
|
reporter: process.env.CI ? 'spec' : 'dot',
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user