Skip to content

Commit

Permalink
Merge pull request atom#19523 from atom/as/longer-main-process-tests-…
Browse files Browse the repository at this point in the history
…timeout

Increase timeout for atom-application.test.js on CI
  • Loading branch information
jasonrudolph authored Jun 13, 2019
2 parents 7faea50 + 6d9f6be commit 7aaf836
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/main-process/atom-application.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7aaf836

Please sign in to comment.