# Codeception Test Suite Configuration
#
# Suite for functional (integration) tests
# Emulate web requests and make application process them
# Include one of framework modules (Symfony2, Yii2, Laravel5) to use it

class_name: FunctionalTester
modules:
    enabled:
        # add framework module here
        - \Helper\Functional
        - Laravel5:
            environment_file: .env.tests
            cleanup: true
        - Db:
            dsn: 'mysql:host=localhost;dbname=snipeittests'
            user: 'snipeit_laravel'
            password: ''
            dump: tests/_data/dump.sql
            populate: true
            cleanup: true
        - REST:
            depends: Laravel5