Blame view

tests/codeception/config/common/unit.php 400 Bytes
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  /**
   * Application config for common unit 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(dirname(__DIR__) . '/config.php'),
      require(dirname(__DIR__) . '/unit.php'),
      [
          'id' => 'app-common',
          'basePath' => dirname(__DIR__),
      ]
  );