accounts/tests/codeception/config/functional.php

13 lines
428 B
PHP
Raw Normal View History

<?php
return [
'components' => [
'request' => [
// it's not recommended to run functional tests with CSRF validation enabled
// TODO: у нас вроде и без того нет проверки csrf
'enableCsrfValidation' => false,
'enableCookieValidation' => false,
// but if you absolutely need it set cookie domain to localhost
],
],
];