in spec/index.js [345:354]
it('should complain about wrong position opitons', function () {
_.each([
true,
'some-where',
{ foo: 'bar' },
['foo', 'bar'],
], pos => {
expect(() => listView.scrollToItem(0, pos)).to.throw('Invalid position');
});
});