UNPKG

dom101

Version:

DOM manipulation functions.

10 lines (8 loc) 231 B
/* eslint-env jest */ var documentHeight = require('../document-height') describe('documentHeight', function () { it('works', function () { // returns 0 in jsdom expect(typeof documentHeight()).toEqual('number') }) })