11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
const expect = require('expect');
|
|
const getScrollPosition = require('./getScrollPosition.js');
|
|
|
|
|
|
test('getScrollPosition is a Function', () => {
|
|
expect(getScrollPosition).toBeInstanceOf(Function);
|
|
});
|
|
t.pass('Tested by @chalarangelo on 16/02/2018');
|
|
|
|
|