Skip to content

Commit 1db76fd

Browse files
committed
rb - add missing guard to spec
1 parent a0c9824 commit 1db76fd

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

rb/spec/integration/selenium/webdriver/edge/driver_spec.rb

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@
1717
# specific language governing permissions and limitations
1818
# under the License.
1919

20-
require File.expand_path("../../spec_helper", __FILE__)
20+
require_relative '../spec_helper'
2121

2222
module Selenium
2323
module WebDriver
2424
module Edge
2525

26-
describe Driver do
27-
it_behaves_like "driver that can be started concurrently", :edge
26+
compliant_on :browser => :edge do
27+
describe Driver do
28+
it_behaves_like "driver that can be started concurrently", :edge
29+
end
2830
end
29-
3031
end # Edge
3132
end # WebDriver
3233
end # Selenium

0 commit comments

Comments
 (0)