# Codeception Test Suite Configuration
# suite for functional (integration) tests.
# emulate web requests and make application process them.
# Include one of framework modules (Symfony2, Yii2, Laravel4) to use it.
# RUN `build` COMMAND AFTER ADDING/REMOVING MODULES.
class_name: FunctionalTester
modules:
    enabled:
        - Filesystem
        - Phalcon2
        - Db
    config:
        Phalcon2:
            bootstrap: 'tests/bootstrap.php'
            cleanup: true
            savepoints: true
        PhpBrowser:
            url: 'http://127.0.0.1'
            curl:
              CURLOPT_RETURNTRANSFER: true
 
  |