24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<?php
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
|
defined('YII_ENV') or define('YII_ENV', 'test');
|
|
|
|
defined('YII_TEST_ENTRY_URL') or define('YII_TEST_ENTRY_URL', parse_url(\Codeception\Configuration::config()['config']['test_entry_url'], PHP_URL_PATH));
|
|
defined('YII_TEST_ENTRY_FILE') or define('YII_TEST_ENTRY_FILE', dirname(dirname(__DIR__)) . '/web/index-test.php');
|
|
|
|
require_once(__DIR__ . '/../../vendor/autoload.php');
|
|
require_once(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
|
|
|
|
$_SERVER['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
|
|
$_SERVER['SCRIPT_NAME'] = YII_TEST_ENTRY_URL;
|
|
$_SERVER['SERVER_NAME'] = parse_url(\Codeception\Configuration::config()['config']['test_entry_url'], PHP_URL_HOST);
|
|
$_SERVER['SERVER_PORT'] = parse_url(\Codeception\Configuration::config()['config']['test_entry_url'], PHP_URL_PORT) ?: '80';
|
|
|
|
Yii::setAlias('@tests', dirname(__DIR__));
|
|
|
|
/**
|
|
* this configure codeception specify to not deep clone objects properties
|
|
* it can be configure localy in your tests
|
|
* @see https://github.com/Codeception/Specify/tree/master/docs
|
|
*/
|
|
\Codeception\Specify\Config::setDeepClone(false);
|