import { insertHtml, byId, removeElement, generateId } from './assets/helpers';
import scrollInfo from '../scrollInfo';
const testID = generateId('ScrollInfo');
describe('"scrollInfo"', () => {
let testNode: Element;
beforeAll(() => {
insertHtml(`
`);
testNode = byId(testID);
});
afterAll(() => removeElement(testID));
it.each([
[100, 50, 50],
[50, 25, 25],
[0, 0, 0]
])('Collects the scroll information: %i%', (pct, x, y) => {
testNode.scrollTop = x;
testNode.scrollLeft = y;
expect(scrollInfo(testNode)).toEqual({
x,
y,
xMax: 50,
yMax: 50,
xPct: pct / 100,
yPct: pct / 100
});
});
});