(count: number, shift = false)
| 195 | testScrollIntoView(); // should only bring 1 cell into view |
| 196 | |
| 197 | async function navigate(count: number, shift = false) { |
| 198 | for (let i = 0; i < count; i++) { |
| 199 | await userEvent.tab({ shift }); |
| 200 | } |
| 201 | } |
| 202 | }); |
| 203 | }); |