summaryrefslogtreecommitdiff
path: root/spec/features/global_search_spec.rb
blob: 4b22b07494d11101811915ea8f451a821cc2253b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'spec_helper'

feature 'Global search', feature: true do
  let(:user) { create(:user) }
  let(:project) { create(:empty_project, namespace: user.namespace) }

  before do
    project.team << [user, :master]
    login_with(user)
  end

  describe 'I search through the issues and I see pagination' do
    before do
      allow_any_instance_of(Gitlab::SearchResults).to receive(:per_page).and_return(1)
      create_list(:issue, 2, project: project, title: 'initial')
    end

    it "has a pagination" do
      visit dashboard_projects_path

      fill_in "search", with: "initial"
      click_button "Go"

      select_filter("Issues")
      expect(page).to have_selector('.gl-pagination .page', count: 2)
    end
  end
end