disable selenium test files
This commit is contained in:
parent
4e8c310156
commit
edfc8bcff1
@ -1,4 +1,4 @@
|
||||
Version 2.1 (November 28th, 2016)
|
||||
Version 2.1 ()
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Allow to set a default category for authors (personal preferences)
|
||||
@ -15,6 +15,8 @@ Version 2.1 (November 28th, 2016)
|
||||
* [Security] For multi-deletion of entries, secure the HTTP referrer
|
||||
output to prevent XSS (Issue #435)
|
||||
|
||||
* Disabled Selenium test files unless enabled
|
||||
|
||||
Version 2.1-beta2 (September 26th, 2016)
|
||||
------------------------------------------------------------------------
|
||||
* Improved backend accessibility by hiding iconfont icons for
|
||||
|
@ -1,4 +1,8 @@
|
||||
<?php
|
||||
if (!isset($GLOBALS['S9Y_SELENIUM_ENABLED'])) {
|
||||
die('Selenium disabled.');
|
||||
}
|
||||
|
||||
if ( isset($_COOKIE['PHPUNIT_SELENIUM_TEST_ID']) &&
|
||||
!isset($_GET['PHPUNIT_SELENIUM_TEST_ID']) &&
|
||||
extension_loaded('xdebug')) {
|
||||
|
@ -1,4 +1,8 @@
|
||||
<?php
|
||||
if (!isset($GLOBALS['S9Y_SELENIUM_ENABLED'])) {
|
||||
die('Selenium disabled.');
|
||||
}
|
||||
|
||||
require_once 'PHPUnit/Util/FilterIterator.php';
|
||||
|
||||
if (isset($_GET['PHPUNIT_SELENIUM_TEST_ID'])) {
|
||||
|
@ -1,4 +1,8 @@
|
||||
<?php
|
||||
if (!isset($GLOBALS['S9Y_SELENIUM_ENABLED'])) {
|
||||
die('Selenium disabled.');
|
||||
}
|
||||
|
||||
if ( isset($_COOKIE['PHPUNIT_SELENIUM_TEST_ID']) &&
|
||||
!isset($_GET['PHPUNIT_SELENIUM_TEST_ID']) &&
|
||||
extension_loaded('xdebug')) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user