({ title })
| 154 | } |
| 155 | |
| 156 | function deleteWorkflowEntry({ title }) { |
| 157 | cy.contains('a', title) |
| 158 | .parent() |
| 159 | .within(() => { |
| 160 | cy.contains('button', 'Delete new entry').click({ force: true }); |
| 161 | }); |
| 162 | |
| 163 | assertNotification(notifications.deletedUnpublished); |
| 164 | } |
| 165 | |
| 166 | const STATUS_BUTTON_TEXT = 'Status:'; |
| 167 |
no test coverage detected