index-test-functional.php 290 B

1234567891011
  1. <?php
  2. // this file is used as the entry script for codeception functional testing
  3. $config = yii\helpers\ArrayHelper::merge(
  4. require(__DIR__ . '/../config/web.php'),
  5. require(__DIR__ . '/../config/codeception/functional.php')
  6. );
  7. $config['class'] = 'yii\web\Application';
  8. return $config;