From e6820a98b27b0d0c0c880edfe3b5b39a72496a62 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Thu, 16 Sep 2021 14:24:28 +0300 Subject: [PATCH] integrationTests: increase timeout to 60s (#3263) With previous timeout Webpack test was failing on CI from time to time --- integrationTests/integration-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrationTests/integration-test.js b/integrationTests/integration-test.js index 8590cf5f38..aa5eac2f2e 100644 --- a/integrationTests/integration-test.js +++ b/integrationTests/integration-test.js @@ -39,7 +39,7 @@ describe('Integration Tests', () => { const cwd = path.join(tmpDir, projectName); exec('npm --quiet install', { cwd, stdio: 'inherit' }); exec('npm --quiet test', { cwd, stdio: 'inherit' }); - }).timeout(40000); + }).timeout(60000); } testOnNodeProject('ts');