UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

10 lines (9 loc) 308 B
/** * helper function to get the viewport size of the browser */ module.exports = function() { return { screenWidth: Math.max(document.documentElement.clientWidth, window.innerWidth || 0), screenHeight: Math.max(document.documentElement.clientHeight, window.innerHeight || 0) }; };