@@ -207,19 +207,20 @@ Feature: Manage WordPress themes
207207 And STDOUT should be empty
208208 And the return code should be 0
209209
210+ @require-wp-5.3
210211 Scenario : Flag `--skip-update-check` skips update check when running `wp theme list`
211212 Given a WP install
212213
213- When I run `wp theme install twentyten --version=4 .0`
214+ When I run `wp theme install astra --version=1.0 .0`
214215 Then STDOUT should contain:
215216 """
216- Installed 1 of 1 themes
217+ Theme installed successfully.
217218 """
218219
219220 When I run `wp theme list --fields=name,status,update`
220221 Then STDOUT should be a table containing rows:
221222 | name | status | update |
222- | twentyten | inactive | available |
223+ | astra | inactive | available |
223224
224225 When I run `wp transient delete update_themes --network`
225226 Then STDOUT should be:
@@ -230,7 +231,7 @@ Feature: Manage WordPress themes
230231 When I run `wp theme list --fields=name,status,update --skip-update-check`
231232 Then STDOUT should be a table containing rows:
232233 | name | status | update |
233- | twentyten | inactive | none |
234+ | astra | inactive | none |
234235
235236 Scenario : Install a theme when the theme directory doesn't yet exist
236237 Given a WP install
0 commit comments