(columnNames, widths)
| 180 | |
| 181 | describe('interactions', () => { |
| 182 | function mapFromWidths(columnNames, widths) { |
| 183 | return new Map(widths.map((width, i) => [columnNames[i].toLowerCase(), width])); |
| 184 | } |
| 185 | |
| 186 | it.each` |
| 187 | col | delta | expected | expectedOnResize |