({ title }, fromColumnHeading, toColumnHeading)
| 135 | } |
| 136 | |
| 137 | function updateWorkflowStatus({ title }, fromColumnHeading, toColumnHeading) { |
| 138 | cy.contains('h2', fromColumnHeading).parent().contains('a', title).drag(); |
| 139 | cy.contains('h2', toColumnHeading).parent().drop(); |
| 140 | assertNotification(notifications.updated); |
| 141 | } |
| 142 | |
| 143 | function publishWorkflowEntry({ title }, timeout) { |
| 144 | cy.contains('h2', workflowStatus.ready, { timeout }) |
no test coverage detected