forked from nevercodealone/cms-symfony-sulu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeception.yml
53 lines (52 loc) · 1.21 KB
/
codeception.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
namespace: NCATesting
actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
settings:
bootstrap: _bootstrap.php
colors: true
memory_limit: 1024M
shuffle: true
restart: false
extensions:
enabled:
- Codeception\Extension\RunFailed
coverage:
enabled: true
include:
- src/*
exclude:
- vendor/*
- var/*
modules:
config:
Db:
dsn: 'mysql:host=%DATABASE_HOST%;dbname=%DATABASE_NAME%'
user: '%DATABASE_USER%'
password: '%DATABASE_PASS%'
PhpBrowser:
url: '%WEBSITE_URL%'
clear_cookies: false
restart: false
curl:
CURLOPT_RETURNTRANSFER: true
REST:
url: '%WEBSITE_URL%'
depends: PhpBrowser
part: Json
WebDriver:
host: '%WEBDRIVER_URL%'
url: '%WEBSITE_URL%'
browser: chrome
window_size: 1600x1000
request_timeout: 40
clear_cookies: false
restart: false
capabilities:
unexpectedAlertBehaviour: 'ignore'
params:
- env