20 lines
531 B
YAML
20 lines
531 B
YAML
|
|
# Codeception Test Suite Configuration
|
||
|
|
#
|
||
|
|
# Suite for functional tests
|
||
|
|
# Emulate web requests and make application process them
|
||
|
|
# Include one of framework modules (Symfony, Yii2, Laravel, Phalcon5) to use it
|
||
|
|
# Remove this suite if you don't use frameworks
|
||
|
|
|
||
|
|
actor: FunctionalTester
|
||
|
|
modules:
|
||
|
|
enabled:
|
||
|
|
# add a framework module here
|
||
|
|
- Laravel
|
||
|
|
config:
|
||
|
|
Db:
|
||
|
|
dsn: 'mysql:host=127.0.0.1;dbname=iclop'
|
||
|
|
user: 'root'
|
||
|
|
password: ''
|
||
|
|
populate: true
|
||
|
|
step_decorators: ~
|