# Codeception Test Suite Configuration # # Suite for acceptance tests. # Perform tests in browser using the WebDriver or PhpBrowser. # If you need both WebDriver and PHPBrowser tests - create a separate suite. actor: AcceptanceTester modules: enabled: - PhpBrowser: # - WebDriver: # browser: chrome url: http://laraland.test - \Helper\Acceptance - Db: dsn: 'mysql:host=mariadb;port=3306;dbname=laraland' user: 'root' password: 'root' cleanup: true dump: 'tests/_data/db_laraland.sql' populate: true populator: 'mysql -u$user -p$password -h$host $dbname < $dump'