Skip to content

Commit 2730313

Browse files
committed
rb - add wires to ./go tests
1 parent 592c37b commit 2730313

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

rb/build.desc

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ rubygem(
1212
"//rb:phantomjs",
1313
"//rb:remote",
1414
"//rb:rc-client",
15-
"//rb:safari"
15+
"//rb:safari",
16+
"//rb:wires"
1617
]
1718
)
1819

@@ -111,6 +112,26 @@ ruby_test(name = "edge",
111112
deps = [ ":edge" ]
112113
)
113114

115+
ruby_library(name = "wires",
116+
srcs = [
117+
"lib/selenium/webdriver/firefox/**/*.rb",
118+
"lib/selenium/webdriver/firefox.rb"
119+
],
120+
deps = [
121+
":common",
122+
":remote"
123+
]
124+
)
125+
126+
ruby_test(name = "wires",
127+
srcs = [
128+
"spec/integration/selenium/webdriver/*_spec.rb",
129+
"spec/integration/selenium/webdriver/wires/**/*_spec.rb"
130+
],
131+
include = ["rb/spec/integration", "build/rb/lib"],
132+
deps = [ ":wires" ]
133+
)
134+
114135
ruby_library(name = "firefox",
115136
srcs = [
116137
"lib/selenium/webdriver/firefox/**/*.rb",

0 commit comments

Comments
 (0)