Skip to content

Commit f6538fc

Browse files
committed
Add missing buck files for tests
1 parent 9e4a7a6 commit f6538fc

File tree

3 files changed

+14
-0
lines changed
  • java/server
    • src/org/openqa/grid/selenium
    • test/org/openqa/grid/selenium/proxy

3 files changed

+14
-0
lines changed

Rakefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,8 @@ task :test_java_small_tests => [
259259
"//java/client/test/org/openqa/selenium/support:small-tests:run",
260260
"//java/client/test/org/openqa/selenium/remote:common-tests:run",
261261
"//java/client/test/org/openqa/selenium/remote:client-tests:run",
262+
"//java/server/test/org/openqa/grid/selenium/node:node:run",
263+
"//java/server/test/org/openqa/grid/selenium/proxy:proxy:run",
262264
"//java/server/test/org/openqa/selenium/remote/server:small-tests:run",
263265
"//java/server/test/org/openqa/selenium/remote/server/log:test:run",
264266
]

java/server/src/org/openqa/grid/selenium/BUCK

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ java_library(name = 'classes',
4545
],
4646
visibility = [
4747
'//java/server/test/org/openqa/grid/e2e:tests',
48+
'//java/server/test/org/openqa/grid/selenium/proxy:proxy',
4849
],
4950
)
5051

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
java_test(
2+
name = "proxy",
3+
srcs = glob(["*.java"]),
4+
deps = [
5+
"//java/server/src/org/openqa/grid:grid",
6+
"//java/server/src/org/openqa/grid/selenium:classes",
7+
"//third_party/java/beust:jcommander",
8+
"//third_party/java/junit:junit",
9+
"//third_party/java/guava:guava",
10+
],
11+
)

0 commit comments

Comments
 (0)