yii2-netdisk/tests/codeception/config/functional.php

26 lines
742 B
PHP
Raw Normal View History

<?php
$_SERVER['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
$_SERVER['SCRIPT_NAME'] = YII_TEST_ENTRY_URL;
2014-08-17 22:45:58 +08:00
/**
* Application configuration for functional tests
*/
2013-12-30 22:22:18 +08:00
return yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/../../../config/web.php'),
2014-08-17 22:45:58 +08:00
require(__DIR__ . '/config.php'),
2014-03-16 12:46:16 +08:00
[
'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',
],
*/
],
],
2014-03-16 12:46:16 +08:00
]
2013-12-30 22:22:18 +08:00
);