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',
|
'version' => '25',
|
||||||
'platform' => 'Windows 8.1',
|
'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
|
// run IE9 on Windows 7 on Sauce
|
||||||
array(
|
array(
|
||||||
'browserName' => 'internet explorer',
|
'browserName' => 'internet explorer',
|
||||||
|
@ -94,6 +86,7 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
|
||||||
if (isset ($_SERVER["TRAVIS_JOB_NUMBER"])) {
|
if (isset ($_SERVER["TRAVIS_JOB_NUMBER"])) {
|
||||||
$caps = $this->getDesiredCapabilities();
|
$caps = $this->getDesiredCapabilities();
|
||||||
$caps['build'] = getenv ("TRAVIS_JOB_NUMBER");
|
$caps['build'] = getenv ("TRAVIS_JOB_NUMBER");
|
||||||
|
$caps['idle-timeout'] = "180";
|
||||||
$this->setDesiredCapabilities($caps);
|
$this->setDesiredCapabilities($caps);
|
||||||
}
|
}
|
||||||
parent::setUp ();
|
parent::setUp ();
|
||||||
|
|
Loading…
Reference in a new issue