30 lines
842 B
YAML
30 lines
842 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'
|
|
|
|
env:
|
|
staging:
|
|
modules:
|
|
config:
|
|
PhpBrowser:
|
|
url: http://laraland.waf.or.id
|