Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2014-03-19 17:58:07 +0400
committerMichal Čihař <michal@cihar.com>2014-03-19 17:58:07 +0400
commit49cf2db79f9e8c041e8c858c104598fefdc21a15 (patch)
treeb13cf83f499aa6e49db01d01d686e23709f2b72b /test
parenta52d5faf3e53551cc165f0bb14af30b5e4ef646d (diff)
Switch back to chrome for CI testing
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'test')
-rw-r--r--test/selenium/TestBase.php70
1 files changed, 37 insertions, 33 deletions
diff --git a/test/selenium/TestBase.php b/test/selenium/TestBase.php
index 6f66b4337d..a6cbd6bd14 100644
--- a/test/selenium/TestBase.php
+++ b/test/selenium/TestBase.php
@@ -69,6 +69,20 @@ abstract class PMA_SeleniumBase extends PHPUnit_Extensions_Selenium2TestCase
$result = array();
$result[] = array(
+ 'browserName' => 'chrome',
+ 'host' => 'hub.browserstack.com',
+ 'port' => 80,
+ 'timeout' => 30000,
+ 'sessionStrategy' => 'shared',
+ 'desiredCapabilities' => $capabilities,
+ );
+
+ /* Only one browser for continuous integration for speed */
+ if (empty($GLOBALS['TESTSUITE_FULL'])) {
+ return $result;
+ }
+
+ $result[] = array(
'browserName' => 'Safari',
'host' => 'hub.browserstack.com',
'port' => 80,
@@ -82,40 +96,30 @@ abstract class PMA_SeleniumBase extends PHPUnit_Extensions_Selenium2TestCase
)
)
);
- if (!empty($GLOBALS['TESTSUITE_FULL'])) {
- $result[] = array(
- 'browserName' => 'chrome',
- 'host' => 'hub.browserstack.com',
- 'port' => 80,
- 'timeout' => 30000,
- 'sessionStrategy' => 'shared',
- 'desiredCapabilities' => $capabilities,
- );
- $result[] = array(
- 'browserName' => 'firefox',
- 'host' => 'hub.browserstack.com',
- 'port' => 80,
- 'timeout' => 30000,
- 'sessionStrategy' => 'shared',
- 'desiredCapabilities' => $capabilities,
- );
- /* TODO: testing is MSIE is currently broken, so disabled
- $result[] = array(
- 'browserName' => 'internet explorer',
- 'host' => 'hub.browserstack.com',
- 'port' => 80,
- 'timeout' => 30000,
- 'sessionStrategy' => 'shared',
- 'desiredCapabilities' => array_merge(
- $capabilities,
- array(
- 'os' => 'windows',
- 'os_version' => '7',
- )
+ $result[] = array(
+ 'browserName' => 'firefox',
+ 'host' => 'hub.browserstack.com',
+ 'port' => 80,
+ 'timeout' => 30000,
+ 'sessionStrategy' => 'shared',
+ 'desiredCapabilities' => $capabilities,
+ );
+ /* TODO: testing is MSIE is currently broken, so disabled
+ $result[] = array(
+ 'browserName' => 'internet explorer',
+ 'host' => 'hub.browserstack.com',
+ 'port' => 80,
+ 'timeout' => 30000,
+ 'sessionStrategy' => 'shared',
+ 'desiredCapabilities' => array_merge(
+ $capabilities,
+ array(
+ 'os' => 'windows',
+ 'os_version' => '7',
)
- );
- */
- }
+ )
+ );
+ */
return $result;
} elseif (! empty($GLOBALS['TESTSUITE_SELENIUM_HOST'])) {
self::$_selenium_enabled = true;