Fix WordPress Playground tests: update blueprints to use installPlugin step, update test command

This commit is contained in:
2025-04-22 16:19:04 +01:00
parent c29841b8ae
commit 0f83330d85
7 changed files with 39 additions and 11 deletions

View File

@@ -19,9 +19,23 @@
"step": "wp-cli",
"command": "wp site create --slug=testsite"
},
{
"step": "installPlugin",
"pluginData": {
"resource": "wordpress.org/plugins",
"slug": "plugin-toggle"
}
},
{
"step": "installPlugin",
"pluginData": {
"resource": "wordpress.org/plugins",
"slug": "kadence-blocks"
}
},
{
"step": "wp-cli",
"command": "wp plugin install plugin-toggle kadence-blocks --activate-network"
"command": "wp plugin activate plugin-toggle kadence-blocks --network"
}
]
}