Skip to content

Commit

Permalink
fix(tests): change deafult jasmine Timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Babanila committed Jul 26, 2018
1 parent e6cc2ac commit 8607508
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/spec/integration/export.spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe 'Export integration tests', ->
userAgentConfig: {}
}
beforeEach (done) ->
jasmine.getEnv().defaultTimeoutInterval = 50000 # 50 sec
jasmine.DEFAULT_TIMEOUT_INTERVAL = 50000 # 50 sec
@export = new Export(constructorOptions)
@client = @export.client
@productType = TestHelpers.mockProductType()
Expand Down
2 changes: 1 addition & 1 deletion src/spec/integration/exportXlsx.spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ readXlsx = (filePath) ->
describe 'Export xlsx integration tests', ->

beforeEach (done) ->
jasmine.getEnv().defaultTimeoutInterval = 30000 # 30 sec
jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000 # 30 sec
@export = new Export {
authConfig: authConfig
httpConfig: httpConfig
Expand Down

0 comments on commit 8607508

Please sign in to comment.