Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

22 lines
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();