Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issuable_sidebar_shared_examples.rb « features « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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