Skip to content

Commit

Permalink
[build] allow filtering firefox beta and firefox dev from test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Oct 31, 2023
1 parent 8661339 commit 26e7d27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/private/selenium_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ BROWSERS = {
"deps": ["//java/src/org/openqa/selenium/firefox"],
"jvm_flags": ["-Dselenium.browser=ff"] + firefox_beta_jvm_flags,
"data": firefox_beta_data,
"tags": COMMON_TAGS + ["firefox"],
"tags": COMMON_TAGS + ["firefox", "firefox-beta"],
},
"firefox-dev": {
"deps": ["//java/src/org/openqa/selenium/firefox"],
"jvm_flags": ["-Dselenium.browser=ff"] + firefox_dev_jvm_flags,
"data": firefox_dev_data,
"tags": COMMON_TAGS + ["firefox"],
"tags": COMMON_TAGS + ["firefox", "firefox-dev"],
},
"ie": {
"deps": ["//java/src/org/openqa/selenium/ie"],
Expand Down

0 comments on commit 26e7d27

Please sign in to comment.