Skip to content

Commit

Permalink
Ignore failing storage tests for Chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Dec 13, 2017
1 parent e6c2e70 commit 4a36066
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rb/spec/integration/selenium/webdriver/storage_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ module DriverExtensions
storage.clear
end

it 'can get and set items' do
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2177
it 'can get and set items', except: {browser: :chrome} do
expect(storage).to be_empty
storage['foo'] = 'bar'
expect(storage['foo']).to eq('bar')
Expand All @@ -47,7 +48,8 @@ module DriverExtensions
expect(storage.keys).to include('foo1', 'foo2', 'foo3')
end

it 'can clear all items' do
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2177
it 'can clear all items', except: {browser: :chrome} do
storage['foo1'] = 'bar1'
storage['foo2'] = 'bar2'
storage['foo3'] = 'bar3'
Expand Down

0 comments on commit 4a36066

Please sign in to comment.