Increase timeout on Windows CI

This commit is contained in:
Kevin Sawicki 2014-06-18 10:04:07 -07:00
parent 53c363b853
commit 29d26a4fae

View File

@ -33,6 +33,11 @@ $(window).on 'unload', ->
$('html,body').css('overflow', 'auto')
jasmine.getEnv().addEqualityTester(_.isEqual) # Use underscore's definition of equality for toEqual assertions
if process.platform is 'win32' and process.env.JANKY_SHA1
# Use longer timeout on Windows CI
jasmine.getEnv().defaultTimeoutInterval = 30000
else
jasmine.getEnv().defaultTimeoutInterval = 5000
specPackageName = null