-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
codeception.dist.yml
65 lines (65 loc) · 2.52 KB
/
codeception.dist.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
actor: Tester
paths:
tests: tests
data: tests/_data
helpers: tests/_support
log: var/_output
output: var/_output
settings:
colors: true
memory_limit: 1024M
params:
- tests/.env
- env
bootstrap: _bootstrap.php
coverage:
enabled: true
include:
- src/*
wpFolder: '%WORDPRESS_ROOT_DIR%'
extensions:
config:
"lucatume\\WPBrowser\\Extension\\BuiltInServerController":
docroot: '%WORDPRESS_ROOT_DIR%'
port: '%WORDPRESS_LOCALHOST_PORT%'
workers: 5
"lucatume\\WPBrowser\\Extension\\ChromeDriverController":
port: '%CHROMEDRIVER_PORT%'
binary: '%CHROMEDRIVER_BINARY%'
"lucatume\\WPBrowser\\Extension\\DockerComposeController":
compose-file: docker-compose.yml
env-file: tests/.env
"lucatume\\WPBrowser\\Extension\\MysqlServerController":
port: '%WORDPRESS_DB_LOCALHOST_PORT%'
database: '%WORDPRESS_DB_NAME%'
user: '%WORDPRESS_DB_USER%'
password: '%WORDPRESS_DB_PASSWORD%'
enabled:
- "lucatume\\WPBrowser\\Extension\\EventDispatcherBridge"
- "lucatume\\WPBrowser\\Extension\\BuiltInServerController"
- "lucatume\\WPBrowser\\Extension\\ChromeDriverController"
- "lucatume\\WPBrowser\\Extension\\MysqlServerController"
- "lucatume\\WPBrowser\\Extension\\IsolationSupport"
commands:
- "lucatume\\WPBrowser\\Command\\RunOriginal"
- "lucatume\\WPBrowser\\Command\\RunAll"
- "lucatume\\WPBrowser\\Command\\GenerateWPAjax"
- "lucatume\\WPBrowser\\Command\\GenerateWPCanonical"
- "lucatume\\WPBrowser\\Command\\GenerateWPRestApi"
- "lucatume\\WPBrowser\\Command\\GenerateWPRestController"
- "lucatume\\WPBrowser\\Command\\GenerateWPRestPostTypeController"
- "lucatume\\WPBrowser\\Command\\GenerateWPUnit"
- "lucatume\\WPBrowser\\Command\\GenerateWPXML"
- "lucatume\\WPBrowser\\Command\\GenerateWPXMLRPC"
- "lucatume\\WPBrowser\\Command\\ChromedriverUpdate"
- "lucatume\\WPBrowser\\Command\\DevStart"
- "lucatume\\WPBrowser\\Command\\DevStop"
- "lucatume\\WPBrowser\\Command\\DevRestart"
- "lucatume\\WPBrowser\\Command\\DevInfo"
- "lucatume\\WPBrowser\\Command\\DbImport"
- "lucatume\\WPBrowser\\Command\\DbExport"
- "lucatume\\WPBrowser\\Command\\MonkeyCacheClear"
- "lucatume\\WPBrowser\\Command\\MonkeyCachePath"
snapshot:
refresh: true
version: "%WPBROWSER_VERSION%"