21 lines
479 B
PHP
Executable File
21 lines
479 B
PHP
Executable File
<?php
|
|
# @Author: fm453
|
|
# @Date: 1970-01-01T08:00:00+08:00
|
|
# @Email: fm43@hiluker.com
|
|
# @Last modified by: Fm453
|
|
# @Last modified time: 2021-09-14T23:52:44+08:00
|
|
|
|
$test = [
|
|
'id' => 'app-backend-tests',
|
|
'components' => [
|
|
'assetManager' => [
|
|
'basePath' => __DIR__ . '/../web/assets',
|
|
],
|
|
],
|
|
];
|
|
return yii\helpers\ArrayHelper::merge(
|
|
require(__DIR__ . '/../../common/config/test.php'),
|
|
require(__DIR__ . '/main.php'),
|
|
$test
|
|
);
|