(newMessage: string)
| 202 | content, |
| 203 | attachments, |
| 204 | async edit(newMessage: string) { |
| 205 | await page.getByTestId('message-edit-button').click(); |
| 206 | await page.getByTestId('message-editor').fill(newMessage); |
| 207 | await page.getByTestId('message-editor-send-button').click(); |
| 208 | await expect( |
| 209 | page.getByTestId('message-editor-send-button'), |
| 210 | ).not.toBeVisible(); |
| 211 | }, |
| 212 | }; |
| 213 | } |
| 214 |
no outgoing calls
no test coverage detected