yii2-netdisk/tests/config/functional.php

23 lines
641 B
PHP
Raw Normal View History

<?php
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(
2016-07-15 02:03:28 +08:00
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
);