1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/acceptance.suite.yml

23 lines
716 B
YAML
Raw Normal View History

2015-08-20 17:09:04 +02: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-22 20:58:16 +01:00
url: 'http://ninja.dev:8000/'
2015-08-20 17:09:04 +02:00
window_size: 1024x768
wait: 5
2016-02-18 12:36:47 +01:00
browser: firefox
2015-08-20 17:09:04 +02:00
capabilities:
unexpectedAlertBehaviour: 'accept'
webStorageEnabled: true
2015-08-20 17:09:04 +02:00
- Db:
2016-02-17 20:41:14 +01:00
dsn: 'mysql:dbname=ninja;host=127.0.0.1;'
2015-08-20 17:09:04 +02:00
user: 'ninja'
password: 'ninja'
dump: tests/_data/dump.sql
- \Helper\Acceptance