Codeception / module-yii2

Codeception module for Yii2 framework
MIT License
16 stars 36 forks source link

No support php8.2 #79

Closed pamparam83 closed 1 year ago

pamparam83 commented 1 year ago

my config

"require-dev": {
        "codeception/codeception": "^5.0.0",
        "codeception/lib-innerbrowser": "^3.0",
        "codeception/module-asserts": "^3.0",
        "codeception/module-filesystem": "^3.0",
        "codeception/module-phpbrowser": "^3.0",
        "codeception/module-webdriver": "3.1.0",
        "codeception/module-yii2": "^1.1",
        "codeception/specify": "~0.4.6",
        "codeception/verify": "^2.2",
....
        }

and console run

php vendor/bin/codecept run functional

result

 In Configuration.php line 236:

  Output path is not defined by key "paths: output"  
Naktibalda commented 1 year ago

If you upgraded to Codeception 5, you have to rename old paths: log setting to paths: output in codeception.yml file.

before:

paths:
    tests: tests
    log: tests/log

after:

paths:
    tests: tests
    output: tests/log