Add a larger idle timeout could help with Android and remove IE8 for now (got to test better)

This commit is contained in:
Sébastien Lucas 2014-01-03 23:29:50 +01:00
parent 00cc5df705
commit a28d52e633

View file

@ -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',
@ -79,7 +71,7 @@ class Cops extends Sauce\Sausage\WebDriverTestCase
'platform' => 'Linux' 'platform' => 'Linux'
) )
) )
// run Chrome locally // run Chrome locally
//array( //array(
@ -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 ();