-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
codeception.yml
91 lines (85 loc) · 3.48 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
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
81
82
83
84
85
86
87
88
89
90
paths:
tests: tests/codeception
output: tests/codeception/_output
data: tests/codeception/Support/Data
support: tests/codeception/Support
envs: tests/codeception/_envs
params:
- ../../../bin/.credentials/.env.codeception
actor_suffix: Tester
extensions:
enabled:
- Codeception\Extension\RunFailed
env:
# Environment with classic firefox local
firefox:
extensions:
enabled:
- Codeception\Extension\RunProcess:
0: geckodriver
sleep: 7 # seconds before processing boot, otherwise it fails sometimes
# WordPress specific libraries, allow many things like using admin, runs localy only
# Environment with WPBrowser (codeception default browser)
wpbrowser:
modules:
enabled:
- WPDb
- WPBrowser
extensions:
commands:
- Codeception\Command\GenerateWPUnit
- Codeception\Command\GenerateWPRestApi
- Codeception\Command\GenerateWPRestController
- Codeception\Command\GenerateWPRestPostTypeController
- Codeception\Command\GenerateWPAjax
- Codeception\Command\GenerateWPCanonical
- Codeception\Command\GenerateWPXMLRPC
# Environment with WPWebDriver+Firefox driver
wpfirefox:
extensions:
enabled:
- Codeception\Extension\RunProcess:
0: geckodriver
sleep: 7 # seconds to process boot, otherwise it fails sometimes
commands:
- Codeception\Command\GenerateWPUnit
- Codeception\Command\GenerateWPRestApi
- Codeception\Command\GenerateWPRestController
- Codeception\Command\GenerateWPRestPostTypeController
- Codeception\Command\GenerateWPAjax
- Codeception\Command\GenerateWPCanonical
- Codeception\Command\GenerateWPXMLRPC
# Environment with WPWebDriver+WPDb+Firefox driver
wpdbfirefox:
modules:
enabled:
- WPDb
- WPWebDriver
extensions:
enabled:
- Codeception\Extension\RunProcess:
0: geckodriver
sleep: 7 # seconds to process boot, otherwise it fails sometimes
commands:
- Codeception\Command\GenerateWPUnit
- Codeception\Command\GenerateWPRestApi
- Codeception\Command\GenerateWPRestController
- Codeception\Command\GenerateWPRestPostTypeController
- Codeception\Command\GenerateWPAjax
- Codeception\Command\GenerateWPCanonical
- Codeception\Command\GenerateWPXMLRPC
# Environment with WPWebDriver"Chrome driver
wpchrome:
extensions:
enabled:
- Codeception\Extension\RunProcess:
0: chromedriver --url-base=/wd/hub --port=4444
sleep: 3 # seconds to process boot, otherwise it fails sometimes
commands:
- Codeception\Command\GenerateWPUnit
- Codeception\Command\GenerateWPRestApi
- Codeception\Command\GenerateWPRestController
- Codeception\Command\GenerateWPRestPostTypeController
- Codeception\Command\GenerateWPAjax
- Codeception\Command\GenerateWPCanonical
- Codeception\Command\GenerateWPXMLRPC