(actualCell: string, expectedCell: string)
| 3473 | export function expectTableToMatchContent(tableElement: Element, expected: any[]) { |
| 3474 | const missedExpectations: string[] = []; |
| 3475 | function checkCellContent(actualCell: string, expectedCell: string) { |
| 3476 | if (actualCell !== expectedCell) { |
| 3477 | missedExpectations.push(`Expected cell contents to be ${expectedCell} but was ${actualCell}`); |
| 3478 | } |
| 3479 | } |
| 3480 | |
| 3481 | const actual = getActualTableContent(tableElement); |
| 3482 |
no test coverage detected