Skip to content

Commit

Permalink
[java] Running Chrome-specific tests with bazel
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Nov 29, 2018
1 parent ca3574e commit c6a5de2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions java/client/test/org/openqa/selenium/chrome/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
load("//java:bazel-rules.bzl", "gen_java_selenium_tests")

gen_java_selenium_tests(
drivers = ["chrome"],
srcs = glob([
"*Test.java",
]),
deps = [
"//java/client/src/org/openqa/selenium/chrome",
"//java/client/src/org/openqa/selenium/remote",
"//java/client/src/org/openqa/selenium/support",
"//java/client/test/org/openqa/selenium/build",
"//java/client/test/org/openqa/selenium",
"//java/client/test/org/openqa/selenium/environment",
"//java/client/test/org/openqa/selenium/testing",
"//java/client/test/org/openqa/selenium/testing/drivers",
"//third_party/java/assertj",
"//third_party/java/guava",
"//third_party/java/junit",
"//third_party/java/mockito:mockito-core",
],
)

0 comments on commit c6a5de2

Please sign in to comment.