functional.php 742 Bytes
Newer Older
1
<?php
2 3
$_SERVER['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
$_SERVER['SCRIPT_NAME'] = YII_TEST_ENTRY_URL;
4

5 6 7
/**
 * Application configuration for functional tests
 */
Qiang Xue committed
8
return yii\helpers\ArrayHelper::merge(
9
    require(__DIR__ . '/../../../config/web.php'),
10
    require(__DIR__ . '/config.php'),
11
    [
12 13 14 15 16 17 18 19 20 21 22 23
        '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',
                ],
                */
            ],
        ],
24
    ]
Qiang Xue committed
25
);