-
Notifications
You must be signed in to change notification settings - Fork 2
/
behat.yml.dist
80 lines (73 loc) · 3.07 KB
/
behat.yml.dist
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
imports:
- config/behat/suites.yaml
default:
formatters:
pretty:
verbose: true
paths: false
snippets: false
extensions:
Robertfausk\Behat\PantherExtension: null
FriendsOfBehat\MinkDebugExtension:
directory: etc/build
clean_start: false
screenshot: true
Behat\MinkExtension:
files_path: "%paths.base%/tests/Resources/"
base_url: "https://127.0.0.1:8080/"
javascript_session: chrome
default_session: symfony
sessions:
symfony:
symfony: ~
panther:
panther:
options:
browser: 'chrome'
webServerDir: '%paths.base%/public' # your custom public dir
external_base_uri: 'https://127.0.0.1:8080'
kernel_options:
APP_ENV: test
APP_DEBUG: false
manager_options:
connection_timeout_in_ms: 5000
request_timeout_in_ms: 120000
capabilities:
browserName: chrome
browser: chrome
extra_capabilities:
chromeOptions:
args:
- "--window-size=2880,1800"
- "--headless"
- "start-fullscreen"
- "start-maximized"
- "no-sandbox"
acceptSslCerts: true
acceptInsecureCerts: true
unexpectedAlertBehaviour: accept
chrome:
selenium2:
browser: chrome
capabilities:
browserName: chrome
browser: chrome
version: ""
extra_capabilities:
chromeOptions:
args:
- "start-fullscreen"
- "start-maximized"
- "no-sandbox"
- "--headless"
- "--window-size=1920,1080"
- "--disable-gpu"
acceptSslCerts: true
acceptInsecureCerts: true
unexpectedAlertBehaviour: accept
FriendsOfBehat\SymfonyExtension:
bootstrap: tests/bootstrap.php
FriendsOfBehat\VariadicExtension: null
gherkin:
filters:
tags: "~@todo"