Skip to content

Commit 4a36066

Browse files
committed
Ignore failing storage tests for Chrome
1 parent e6c2e70 commit 4a36066

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

rb/spec/integration/selenium/webdriver/storage_spec.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ module DriverExtensions
2727
storage.clear
2828
end
2929

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

50-
it 'can clear all items' do
51+
# https://bugs.chromium.org/p/chromedriver/issues/detail?id=2177
52+
it 'can clear all items', except: {browser: :chrome} do
5153
storage['foo1'] = 'bar1'
5254
storage['foo2'] = 'bar2'
5355
storage['foo3'] = 'bar3'

0 commit comments

Comments
 (0)