-
Notifications
You must be signed in to change notification settings - Fork 33
/
.wp-env.override.json
41 lines (41 loc) · 1.25 KB
/
.wp-env.override.json
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
{
"core": null,
"plugins": [
"."
],
"config": {
"WP_DEBUG": true,
"WP_DEBUG_DISPLAY": true,
"FS_METHOD": "direct",
"WP_DEFAULT_THEME": "twentytwentythree"
},
"env": {
"development": {
"themes": [ "./test/emptytheme" ],
"mappings": {
"wp-content/themes/raft": "https://downloads.wordpress.org/theme/raft.zip"
}
},
"tests": {
"config": {
"WP_DEBUG": false,
"WP_DEBUG_DISPLAY": false
},
"plugins": [
"."
],
"themes": [ "./test/emptytheme" ],
"mappings": {
"wp-content/mu-plugins": "./packages/e2e-tests/mu-plugins",
"wp-content/plugins/gutenberg-test-plugins": "./packages/e2e-tests/plugins",
"wp-content/themes/gutenberg-test-themes": "./test/gutenberg-test-themes",
"wp-content/themes/gutenberg-test-themes/twentytwentyone": "https://downloads.wordpress.org/theme/twentytwentyone.zip",
"wp-content/themes/gutenberg-test-themes/twentytwentythree": "https://downloads.wordpress.org/theme/twentytwentythree.zip",
"wp-content/themes/raft": "https://downloads.wordpress.org/theme/raft.zip"
}
}
},
"lifecycleScripts": {
"afterStart": "bash bin/e2e-tests.sh"
}
}