({ title }, fromColumnHeading, toColumnHeading)
| 141 | } |
| 142 | |
| 143 | function updateWorkflowStatus({ title }, fromColumnHeading, toColumnHeading) { |
| 144 | cy.contains('h2', fromColumnHeading).parent().contains('a', title).drag(); |
| 145 | cy.contains('h2', toColumnHeading).parent().drop(); |
| 146 | assertNotification(notifications.updated); |
| 147 | } |
| 148 | |
| 149 | function publishWorkflowEntry({ title }, timeout) { |
| 150 | const options = timeout === undefined ? {} : { timeout }; |
no test coverage detected