Skip to content

Commit 370428c

Browse files
shs96cdiemol
andauthored
Remove IE from default list of browsers used for java tests (#12152)
Co-authored-by: Diego Molina <[email protected]>
1 parent 6e8760a commit 370428c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

java/private/selenium_test.bzl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ BROWSERS = {
5656
},
5757
}
5858

59-
def selenium_test(name, test_class, size = "medium", browsers = BROWSERS.keys(), **kwargs):
59+
DEFAULT_BROWSERS = [b for b in BROWSERS.keys() if b != "ie"]
60+
61+
def selenium_test(name, test_class, size = "medium", browsers = DEFAULT_BROWSERS, **kwargs):
6062
if len(browsers) == 0:
6163
fail("At least one browser must be specified.")
6264

0 commit comments

Comments
 (0)