Commit b829d9d4 by Alexander Makarov

Fixes #4827: default config for functional tests of both basic and advanced app…

Fixes #4827: default config for functional tests of both basic and advanced app now turns off CSRF validation while providing commented out alternative setting cookie domain to localhost
parent dd9251ad
...@@ -3,5 +3,16 @@ ...@@ -3,5 +3,16 @@
* Application configuration shared by all applications functional tests * Application configuration shared by all applications functional tests
*/ */
return [ return [
'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',
],
*/
],
],
]; ];
\ No newline at end of file
...@@ -9,6 +9,17 @@ return yii\helpers\ArrayHelper::merge( ...@@ -9,6 +9,17 @@ return yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/../../../config/web.php'), require(__DIR__ . '/../../../config/web.php'),
require(__DIR__ . '/config.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',
],
*/
],
],
] ]
); );
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment