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
commit 7aaf836c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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);