36 lines
979 B
YAML
36 lines
979 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
|
|
bootstrap: bootstrap.php
|
|
modules:
|
|
enabled:
|
|
- \Tests\Support\Helper\Acceptance
|
|
- REST:
|
|
url: 'https://leantime-dev'
|
|
depends: PhpBrowser
|
|
- WebDriver:
|
|
url: 'https://leantime-dev'
|
|
host: selenium
|
|
browser: chrome
|
|
wait: 20
|
|
log_js_errors: true
|
|
window_size: "2560x1440"
|
|
capabilities:
|
|
acceptInsecureCerts: true
|
|
goog:chromeOptions:
|
|
args: [ "--headless" ]
|
|
- Db:
|
|
dsn: "mysql:host=leantime-db;port=3306;dbname=leantime_test"
|
|
user: root
|
|
password: leantime
|
|
populate: true
|
|
cleanup: true
|
|
|
|
step_decorators:
|
|
- Codeception\Step\ConditionalAssertion
|
|
- Codeception\Step\TryTo
|
|
- Codeception\Step\Retry
|