Merge pull request #19523 from atom/as/longer-main-process-tests-timeout

Increase timeout for atom-application.test.js on CI
This commit is contained in:
Jason Rudolph
2019-06-13 12:58:02 -04:00
committed by GitHub

View File

@@ -47,6 +47,10 @@ const {
describe('AtomApplication', function() {
let scenario, sinon;
if (process.env.CI) {
this.timeout(10 * 1000);
}
beforeEach(async function() {
sinon = sandbox.create();
scenario = await LaunchScenario.create(sinon);