(title: string, actionTitle: string)
| 26 | }; |
| 27 | |
| 28 | const getDetailsAction = (title: string, actionTitle: string): HTMLElement => { |
| 29 | const action = getDetails(title).querySelector(`img[title="${actionTitle}"]`); |
| 30 | expect(action).not.toBeNull(); |
| 31 | return action as HTMLElement; |
| 32 | }; |
| 33 | |
| 34 | const getRowAction = ( |
| 35 | tableTitle: string, |
no test coverage detected
searching dependent graphs…