Blame view

app/tests/codeception/config/functional.php 742 Bytes
bf807468   Alex Savenko   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <?php
  $_SERVER['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
  $_SERVER['SCRIPT_NAME'] = YII_TEST_ENTRY_URL;
  
  /**
   * Application configuration for functional tests
   */
  return yii\helpers\ArrayHelper::merge(
      require(__DIR__ . '/../../../config/web.php'),
      require(__DIR__ . '/config.php'),
      [
          'components' => [
              'request' => [
                  // it's not recommended to run functional tests with CSRF validation enabled
                  'enableCsrfValidation' => false,
                  // but if you absolutely need it set cookie domain to localhost
                  /*
                  'csrfCookie' => [
                      'domain' => 'localhost',
                  ],
                  */
              ],
          ],
      ]
  );