From 2f1195ca012a74787e0e4d50c142a9a5487dc4a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 24 Feb 2014 14:26:02 +0100 Subject: [PATCH] Disable BrowserStack debugging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our tests seem to work fine now, so let's not produce huge amount of screenshots. Signed-off-by: Michal Čihař --- test/selenium/TestBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/selenium/TestBase.php b/test/selenium/TestBase.php index 6e6fa1da7d..2aea822fe9 100644 --- a/test/selenium/TestBase.php +++ b/test/selenium/TestBase.php @@ -62,7 +62,7 @@ abstract class PMA_SeleniumBase extends PHPUnit_Extensions_Selenium2TestCase $capabilities = array( 'browserstack.user' => $GLOBALS['TESTSUITE_BROWSERSTACK_USER'], 'browserstack.key' => $GLOBALS['TESTSUITE_BROWSERSTACK_KEY'], - 'browserstack.debug' => true, + 'browserstack.debug' => false, 'project' => 'phpMyAdmin', 'build' => $build_id, );