cloudcmd/client/modules/polyfill.spec.mjs
2026-02-03 13:27:16 +02:00

20 lines
448 B
JavaScript

import {test, stub} from 'supertape';
import {scrollIntoViewIfNeeded} from './polyfill.mjs';
test('cloudcmd: client: polyfill: scrollIntoViewIfNeeded', (t) => {
const scroll = stub();
const el = {};
scrollIntoViewIfNeeded(el, {
scroll,
});
const args = [
el, {
block: 'nearest',
},
];
t.calledWith(scroll, args, 'should call scrollIntoViewIfNeeded');
t.end();
});