From 5561e30a5ad19582988a71e1079ed25f59e74f4a Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 15 Sep 2021 18:09:33 +0300 Subject: [PATCH] integrationTests: increase timeout to 60s 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');