Skip to content

Commit e410866

Browse files
authored
Merge pull request #89 from atom/master
2 parents b3b5cac + 9be7458 commit e410866

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

spec/jasmine-test-runner.coffee

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ temp.track()
88

99
module.exports = ({logFile, headless, testPaths, buildAtomEnvironment}) ->
1010
window[key] = value for key, value of require '../vendor/jasmine'
11+
1112
require 'jasmine-tagged'
1213

1314
# Rewrite global jasmine functions to have support for async tests.

spec/spec-helper.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ jasmine.getEnv().addEqualityTester (a, b) ->
4848
# Match jasmine.any's equality matching logic
4949
return a.jasmineMatches(b) if a?.jasmineMatches?
5050
return b.jasmineMatches(a) if b?.jasmineMatches?
51-
51+
5252
# Use underscore's definition of equality for toEqual assertions
5353
_.isEqual(a, b)
5454

5555
if process.env.CI
56-
jasmine.getEnv().defaultTimeoutInterval = 60000
56+
jasmine.getEnv().defaultTimeoutInterval = 120000
5757
else
5858
jasmine.getEnv().defaultTimeoutInterval = 5000
5959

0 commit comments

Comments
 (0)