-
Notifications
You must be signed in to change notification settings - Fork 0
/
behat.yml
59 lines (50 loc) · 1.4 KB
/
behat.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
53
54
55
56
57
58
59
default:
gherkin:
cache: "%paths.base%/var/cache/behat/behat_gherkin"
filters:
tags: ~@wip
autoload:
- "%paths.base%/tests/behat/bootstrap"
formatters:
pretty:
output_styles:
comment: [ white, black ]
calls:
error_reporting: 16383 # E_ALL & ~E_USER_DREPRECATED
testers:
rerun_cache: "%paths.base%/var/cache/behat/behat_rerun"
extensions:
FriendsOfBehat\SymfonyExtension:
kernel:
class: Bolt\Kernel
Lakion\Behat\MinkDebugExtension:
directory: var/log/behat-reports
screenshot: true
Behat\MinkExtension:
browser_name: chrome
base_url: 'http://127.0.0.1:8088/'
goutte: ~
selenium2: ~
sessions:
default:
selenium2:
capabilities:
extra_capabilities:
chromeOptions:
args:
- "--headless"
- "--disable-gpu"
- "--window-size=1920,1080"
w3c: false
Behatch\Extension: ~
suites:
default:
filters:
tags: "~@wip"
contexts:
- Behatch\Context\JsonContext
- Behatch\Context\TableContext
- behatch:context:browser: #include Behatch\Context\BrowserContext and override default timeout
timeout: 5
- Context\CommonContext
paths: [ "%paths.base%/tests/api", "%paths.base%/tests/e2e"]