No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

22 líneas
692B

  1. <?php
  2. date_default_timezone_set('Europe/Paris');
  3. // NOTE: Make sure this file is not accessible when deployed to production
  4. if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) {
  5. die('You are not allowed to access this file.');
  6. }
  7. defined('YII_DEBUG') or define('YII_DEBUG', true);
  8. defined('YII_ENV') or define('YII_ENV', 'test');
  9. require(__DIR__ . '/../../vendor/autoload.php');
  10. require(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
  11. require(__DIR__ . '/../../common/config/bootstrap.php');
  12. require(__DIR__ . '/../config/bootstrap.php');
  13. $config = require(__DIR__ . '/../../tests/codeception/config/backend/acceptance.php');
  14. (new yii\web\Application($config))->run();