summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/features/issuable_sidebar_shared_examples.rb
blob: a112ee568f929dbe79ec9832c3458ba449aa65ba (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

RSpec.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