commit a35d903e77c7332779e1106e4b02acdd7a62d68e
parent d0a1ac967763c114ad924542e5f3d2581a8c4f21
Author: Dan Stillman <dstillman@zotero.org>
Date: Mon, 27 Feb 2017 04:54:11 -0500
Increase size of browser window during tests
Makes it easier to manually increase Zotero pane before a timeout while
debugging (though the page should just be made bigger by default)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/content/support.js b/test/content/support.js
@@ -35,7 +35,7 @@ function loadWindow(winurl, argument) {
* @return {Promise<ChromeWindow>}
*/
function loadBrowserWindow() {
- var win = window.openDialog("chrome://browser/content/browser.xul", "", "all,height=400,width=1000");
+ var win = window.openDialog("chrome://browser/content/browser.xul", "", "all,height=700,width=1000");
return waitForDOMEvent(win, "load").then(function() {
return win;
});