(expected: string[][], input: string[][], initialWidth: string, newWidth: string)
| 129 | }; |
| 130 | |
| 131 | const checkBasicWidth = (expected: string[][], input: string[][], initialWidth: string, newWidth: string) => { |
| 132 | const table = generateW(input, initialWidth); |
| 133 | checkWidth(expected, table, newWidth); |
| 134 | }; |
| 135 | |
| 136 | const checkRowHeight = (expectedRowHeights: string[], table: SugarElement<HTMLTableElement>, newTableHeight: string) => { |
| 137 | Insert.append(SugarBody.body(), table); |
no test coverage detected
searching dependent graphs…