You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
630 B
19 lines
630 B
5 years ago
|
<?php
|
||
|
$_SERVER['SCRIPT_FILENAME'] = YII_TEST_BACKEND_ENTRY_FILE;
|
||
|
$_SERVER['SCRIPT_NAME'] = YII_BACKEND_TEST_ENTRY_URL;
|
||
|
|
||
|
/**
|
||
|
* Application configuration for backend functional tests
|
||
|
*/
|
||
|
return yii\helpers\ArrayHelper::merge(
|
||
|
require(YII_APP_BASE_PATH . '/common/config/main.php'),
|
||
|
require(YII_APP_BASE_PATH . '/common/config/main-local.php'),
|
||
|
require(YII_APP_BASE_PATH . '/backend/config/main.php'),
|
||
|
require(YII_APP_BASE_PATH . '/backend/config/main-local.php'),
|
||
|
require(dirname(__DIR__) . '/config.php'),
|
||
|
require(dirname(__DIR__) . '/functional.php'),
|
||
|
require(__DIR__ . '/config.php'),
|
||
|
[
|
||
|
]
|
||
|
);
|