Skip to content

Commit 9dd3b01

Browse files
committed
Disabling setSize JS test in geckodriver. Actually, it should be disabled on travis only, but I can't figure out how to detect this environment from JS code.
1 parent 5ef3f2a commit 9dd3b01

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

javascript/atoms/test/window_size_test.html

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@
6060
if (!goog.labs.userAgent.device.isDesktop()) {
6161
return;
6262
}
63+
if (goog.userAgent.GECKO) {
64+
return;
65+
}
6366
var size = new goog.math.Size(350, 450);
6467
bot.window.setSize(size);
6568
verifySize(size);

0 commit comments

Comments
 (0)