increase timeout for BrowserStack
This will hopefully fix the issues of failing tests due to timeouts on IE11. Values are taken from testem configuration used by ember.js for BrowserStack: https://github.com/emberjs/ember.js/blob/v3.9.1/testem.browserstack.js
This commit is contained in:
parent
400cf9f9fc
commit
596cd40d2f
1 changed files with 5 additions and 4 deletions
|
@ -1,11 +1,12 @@
|
|||
/* eslint-env node */
|
||||
module.exports = {
|
||||
'test_page': 'tests/index.html?hidepassed',
|
||||
'disable_watching': true,
|
||||
'parallel': 5,
|
||||
test_page: 'tests/index.html?hidepassed',
|
||||
disable_watching: true,
|
||||
parallel: 4,
|
||||
timeout: 1200,
|
||||
browser_start_timeout: 2000,
|
||||
browser_disconnect_timeout: 120,
|
||||
'launch_in_ci': [
|
||||
launch_in_ci: [
|
||||
'BS_IE_11',
|
||||
'BS_MS_Edge',
|
||||
'BS_Safari_Current',
|
||||
|
|
Loading…
Reference in a new issue