28 lines
383 B

export default {
props: {
visible: false,
threshold: 5
},
html: `
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
`,
test({ assert, component, target, window, raf }) {
raf.tick(100);
component.threshold = 4;
raf.tick(200);
assert.htmlEqual(target.innerHTML, `
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
`);
}
};