| 1 |
{ |
| 2 |
"$schema": "https://playground.wordpress.net/blueprint-schema.json", |
| 3 |
"login": false, |
| 4 |
"preferredVersions": { "php": "8.3", "wp": "latest" }, |
| 5 |
"steps": [ |
| 6 |
{ |
| 7 |
"step": "defineWpConfigConsts", |
| 8 |
"consts": { "WP_DEBUG": true } |
| 9 |
}, |
| 10 |
{ |
| 11 |
"step": "installTheme", |
| 12 |
"themeData": { |
| 13 |
"resource": "wordpress.org/themes", |
| 14 |
"slug": "extendable" |
| 15 |
}, |
| 16 |
"options": { "activate": true } |
| 17 |
}, |
| 18 |
{ |
| 19 |
"step": "runPHP", |
| 20 |
"code": "<?php require '/wordpress/wp-content/plugins/extendify-sdk/tests/playwright/setup.php'; ?>" |
| 21 |
} |
| 22 |
] |
| 23 |
} |
| 24 |
|