This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcodeception.dist.yml
73 lines (73 loc) · 2.18 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
66
67
68
69
70
71
72
73
namespace: TypistTech\WPCFG
actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
helpers: tests/_support
settings:
backup_globals: false # See: https://core.trac.wordpress.org/ticket/39327
bootstrap: _bootstrap.php
shuffle: true
colors: true
memory_limit: 1024M
coverage:
include:
- src/*
modules:
config:
WPDb:
dsn: 'mysql:host=127.0.0.1;dbname=wordpress'
user: root
password: ''
dump: tests/_data/dump.sql
populate: true
cleanup: true
url: 'http://wp.dev:8080'
tablePrefix: wp_
WPBrowser:
url: 'http://wp.dev:8080'
adminUsername: 'admin'
adminPassword: 'password'
adminPath: /wp-admin
WordPress:
depends: WPDb
wpRootFolder: /tmp/wordpress
adminUsername: 'admin'
adminPassword: 'password'
WPLoader:
wpRootFolder: /tmp/wordpress
dbName: wordpress_int
dbHost: 127.0.0.1
dbUser: root
dbPassword: ''
tablePrefix: int_wp_
domain: wordpress.dev
adminEmail: [email protected]
WPWebDriver:
url: 'http://wp.dev:8080'
port: 4444
window_size: '1024x768'
adminUsername: 'admin'
adminPassword: 'password'
adminPath: /wp-admin
host: 'wp.dev'
browser: phantomjs
extensions:
enabled:
- Codeception\Extension\Phantoman
config:
Codeception\Extension\Phantoman:
port: 4444
suites: ['acceptance']
commands: [
'Codeception\Command\GenerateWPUnit',
'Codeception\Command\GenerateWPRestApi',
'Codeception\Command\GenerateWPRestController',
'Codeception\Command\GenerateWPRestPostTypeController',
'Codeception\Command\GenerateWPAjax',
'Codeception\Command\GenerateWPCanonical',
'Codeception\Command\GenerateWPXMLRPC',
'Codeception\Command\DbSnapshot',
'tad\Codeception\Command\SearchReplace'
]