Laraland/tests/acceptance.suite.yml
Gregorio Chiko Putra 70fe3a814c Created regular tests
2018-07-21 10:00:34 +07:00

23 lines
707 B
YAML

# 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'