chore: try increasing the timeout on windows (#10324)

This commit is contained in:
Alex Rudenko
2023-06-06 12:25:01 +02:00
committed by GitHub
parent b81b019083
commit a5d4900294

View File

@@ -22,6 +22,6 @@ module.exports = {
exit: !!process.env.CI,
retries: process.env.CI ? 3 : 0,
parallel: !!process.env.PARALLEL,
timeout: 10_000,
timeout: process.platform === 'win32' ? 20_000 : 10_000,
reporter: process.env.CI ? 'spec' : 'dot',
};