summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/features/issuable_sidebar_shared_examples.rb
blob: 96c821b26f72deb94b82b48a7276fc5189de52dd (plain)
1
2
3
4
5
6
7
8
9
shared_examples 'issue sidebar stays collapsed on mobile' do
  before do
    resize_screen_xs
  end

  it 'keeps the sidebar collapsed' do
    expect(page).not_to have_css('.right-sidebar.right-sidebar-collapsed')
  end
end