(container: HTMLElement)
| 49 | } |
| 50 | |
| 51 | function renderedKeys(container: HTMLElement): string[] { |
| 52 | return Array.from(container.querySelectorAll<HTMLElement>("[data-key]")).map( |
| 53 | (element) => element.dataset.key ?? "" |
| 54 | ); |
| 55 | } |
| 56 | |
| 57 | describe("VirtualScroller", () => { |
| 58 | it("includes container bottom padding in the spacer height", () => { |
no outgoing calls
no test coverage detected