Skip to content

Commit

Permalink
integrationTests: increase timeout to 60s (#3263)
Browse files Browse the repository at this point in the history
With previous timeout Webpack test was failing on CI from time to time
  • Loading branch information
IvanGoncharov committed Sep 16, 2021
1 parent ac9833e commit e6820a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrationTests/integration-test.js
Expand Up @@ -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');
Expand Down

0 comments on commit e6820a9

Please sign in to comment.