(position: number)
| 2091 | it('should update the position of sticky cells as the user is scrolling', async () => { |
| 2092 | const {fixture, table} = await createVirtualScroll(TableWithVirtualScroll); |
| 2093 | const assertStickyOffsets = (position: number) => { |
| 2094 | getHeaderCells(table).forEach(cell => expect(cell.style.top).toBe(`${position * -1}px`)); |
| 2095 | getFooterCells(table).forEach(cell => expect(cell.style.bottom).toBe(`${position}px`)); |
| 2096 | }; |
| 2097 | |
| 2098 | assertStickyOffsets(0); |
| 2099 | await triggerScroll(fixture, 1000); |
no test coverage detected