(count: number)
| 68 | } |
| 69 | |
| 70 | function makeCellsForClear(count: number) { |
| 71 | return Array.from({ length: count }, (_, i) => ({ |
| 72 | rowId: `row-${i}`, |
| 73 | data: { col: `val-${i}` }, |
| 74 | })) |
| 75 | } |
| 76 | |
| 77 | /** Drain the microtask queue so all async chunks in executeAction finish. */ |
| 78 | async function flush() { |
no outgoing calls
no test coverage detected