-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeception.yml
43 lines (37 loc) · 1.02 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
namespace: Tests
support_namespace: Support
# suite config
suites:
acceptance:
actor: AcceptanceTester
path: .
modules:
enabled:
- WebDriver:
url: https://localhost
browser: chrome
window_size: 2000x1000
port: 9515
capabilities:
chromeOptions:
args: ["--headless", "--disable-gpu"] # Run Chrome in headless mode
# add Codeception\Step\Retry trait to AcceptanceTester to enable retries
step_decorators:
- Codeception\Step\ConditionalAssertion
- Codeception\Step\TryTo
- Codeception\Step\Retry
extensions:
enabled: [Codeception\Extension\RunFailed]
params:
- env
gherkin: []
# additional paths
paths:
tests: tests
output: tests/build
data: tests/Support/Data
support: tests/Support
envs: tests/_envs
settings:
shuffle: false
lint: true