Add a larger idle timeout could help with Android and remove IE8 for now (got to test better)
This commit is contained in:
parent
00cc5df705
commit
a28d52e633
|
@ -12,15 +12,7 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
|||
'version' => '25',
|
||||
'platform' => 'Windows 8.1',
|
||||
)
|
||||
),
|
||||
// run IE8 on Windows 7 on Sauce
|
||||
array(
|
||||
'browserName' => 'internet explorer',
|
||||
'desiredCapabilities' => array(
|
||||
'version' => '8',
|
||||
'platform' => 'Windows 7',
|
||||
)
|
||||
),
|
||||
// ),
|
||||
// run IE9 on Windows 7 on Sauce
|
||||
array(
|
||||
'browserName' => 'internet explorer',
|
||||
|
@ -79,7 +71,7 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
|||
'platform' => 'Linux'
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
|
||||
// run Chrome locally
|
||||
//array(
|
||||
|
@ -94,6 +86,7 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
|||
if (isset ($_SERVER["TRAVIS_JOB_NUMBER"])) {
|
||||
$caps = $this->getDesiredCapabilities();
|
||||
$caps['build'] = getenv ("TRAVIS_JOB_NUMBER");
|
||||
$caps['idle-timeout'] = "180";
|
||||
$this->setDesiredCapabilities($caps);
|
||||
}
|
||||
parent::setUp ();
|
||||
|
|
Loading…
Reference in a new issue