invoiceninja/tests/acceptance.suite.yml

23 lines
717 B
YAML
Raw Normal View History

2015-08-20 18:09:04 +03:00
# 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:
2016-02-18 13:03:06 +02:00
url: 'http://ninja.dev:8000'
2015-08-20 18:09:04 +03:00
window_size: 1024x768
wait: 5
2016-02-18 11:49:07 +02:00
browser: phantomjs
2015-08-20 18:09:04 +03:00
capabilities:
unexpectedAlertBehaviour: 'accept'
webStorageEnabled: true
2015-08-20 18:09:04 +03:00
- Db:
2016-02-17 21:41:14 +02:00
dsn: 'mysql:dbname=ninja;host=127.0.0.1;'
2015-08-20 18:09:04 +03:00
user: 'ninja'
password: 'ninja'
dump: tests/_data/dump.sql
- \Helper\Acceptance