Skip to content

Commit

Permalink
[bazel]: Add node tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Nov 19, 2018
1 parent b8fb6e1 commit 0345df0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions java/server/test/org/openqa/selenium/grid/node/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
load("//java:bazel-rules.bzl", "gen_java_tests")

gen_java_tests(
name = "node",
srcs = glob(["*.java"]),
size = "small",
deps = [
"//java/client/src/org/openqa/selenium/remote/tracing",
"//java/server/src/org/openqa/selenium/grid/node",
"//java/server/src/org/openqa/selenium/grid/node/local",
"//java/server/src/org/openqa/selenium/grid/node/remote",
"//java/server/src/org/openqa/selenium/grid/sessionmap",
"//java/server/src/org/openqa/selenium/grid/sessionmap/local",
"//java/server/test/org/openqa/selenium/grid/web:utils",
"//third_party/java/assertj",
"//third_party/java/guava",
"//third_party/java/junit",
],
)

0 comments on commit 0345df0

Please sign in to comment.