mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
24 lines
717 B
YAML
24 lines
717 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.
|
|
|
|
class_name: AcceptanceTester
|
|
modules:
|
|
enabled:
|
|
- WebDriver:
|
|
url: 'http://ninja.dev:8000/'
|
|
window_size: 1024x768
|
|
wait: 5
|
|
browser: firefox
|
|
capabilities:
|
|
unexpectedAlertBehaviour: 'accept'
|
|
webStorageEnabled: true
|
|
- Db:
|
|
dsn: 'mysql:dbname=ninja;host=127.0.0.1;'
|
|
user: 'ninja'
|
|
password: 'ninja'
|
|
dump: tests/_data/dump.sql
|
|
- \Helper\Acceptance
|