PHP Classes

File: tests/codeception/config/functional.php

Recommend this page to a friend!
  Classes of Uldis Nelsons   YII2 Framework PHP Init   tests/codeception/config/functional.php   Download  
File: tests/codeception/config/functional.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: YII2 Framework PHP Init
Create a project based on the YII2 from template
Author: By
Last change:
Date: 2 years ago
Size: 742 bytes
 

Contents

Class file image Download
<?php
$_SERVER
['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
$_SERVER['SCRIPT_NAME'] = YII_TEST_ENTRY_URL;

/**
 * Application configuration for functional tests
 */
return yii\helpers\ArrayHelper::merge(
    require(
__DIR__ . '/../../../config/web.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',
                ],
                */
           
],
        ],
    ]
);