We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa627e2 commit 0fb4e1fCopy full SHA for 0fb4e1f
docs/api/commands/prompt.mdx
@@ -432,10 +432,10 @@ it('Scenario Outline: Admin manages user status', () => {
432
const Examples = [
433
{ status: 'pending', action: 'activates', new_status: 'active' },
434
{ status: 'active', action: 'deactivates', new_status: 'inactive' },
435
- { status: 'inactive', action: 'activates', new_status: 'active' }
436
- ];
+ { status: 'inactive', action: 'activates', new_status: 'active' },
+ ]
437
438
- Examples.forEach(example => {
+ Examples.forEach((example) => {
439
cy.prompt([
440
`Given there is a(n) ${example.status} user on the page`,
441
`When the admin ${example.action} the user`,
0 commit comments