From 86ab440bb8832048b72934eb2606792b771cc6ec Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Wed, 1 Apr 2020 23:11:15 -0700 Subject: [PATCH] make minimum window height, so integration tests can clicked on closed group button --- main.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 66ac9c46f..d398aa1ae 100644 --- a/main.js +++ b/main.js @@ -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) {