make minimum window height, so integration tests can clicked on closed group button

pull/1043/head
Ryan Tharp 5 years ago
parent 34a1fdbfec
commit 86ab440bb8

@ -199,9 +199,11 @@ function captureClicks(window) {
}
const DEFAULT_WIDTH = 880;
const DEFAULT_HEIGHT = 720;
// add contact button needs to be visible (on HiDpi screens?)
// otherwise integration test fail
const DEFAULT_HEIGHT = 820;
const MIN_WIDTH = 880;
const MIN_HEIGHT = 720;
const MIN_HEIGHT = 820;
const BOUNDS_BUFFER = 100;
function isVisible(window, bounds) {

Loading…
Cancel
Save