File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Feature: It can create new installs for Valet-supported WordPress projects.
1212 Success: {PROJECT} ready! https://{PROJECT}.dev
1313 """
1414
15- When I run `cd {PROJECT} && wp user list --fields=ID,user_login,user_email`
15+ When I try `cd {PROJECT} && wp user list --fields=ID,user_login,user_email`
1616 Then STDOUT should be a table containing rows:
1717 | ID | user_login | user_email |
1818 | 1 | admin | admin @{PROJECT }.dev |
@@ -21,13 +21,13 @@ Feature: It can create new installs for Valet-supported WordPress projects.
2121 Scenario : It can create a new Bedrock install using sqlite instead of MySql.
2222 Given an empty directory
2323 And a random project name as {PROJECT}
24- When I try `wp valet new {PROJECT} --project=bedrock --db=sqlite`
24+ When I run `wp valet new {PROJECT} --project=bedrock --db=sqlite`
2525 And STDOUT should contain:
2626 """
2727 Success: {PROJECT} ready! https://{PROJECT}.dev
2828 """
2929
30- When I run `cd {PROJECT} && wp user list --fields=ID,user_login,user_email`
30+ When I try `cd {PROJECT} && wp user list --fields=ID,user_login,user_email`
3131 Then STDOUT should be a table containing rows:
3232 | ID | user_login | user_email |
3333 | 1 | admin | admin @{PROJECT }.dev |
You can’t perform that action at this time.
0 commit comments