summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/help_spec.rb
blob: 3f4250014478fc45ea25d000e99a74760de54388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Dashboard Help' do
  before do
    sign_in(create(:user))
  end

  context 'documentation' do
    it 'renders correctly markdown' do
      visit help_page_path("administration/raketasks/maintenance")

      expect(page).to have_content('Gather information about GitLab and the system it runs on')

      node = find('.documentation h2 a#user-content-check-gitlab-configuration')
      expect(node[:href]).to eq '#check-gitlab-configuration'
      expect(find(:xpath, "#{node.path}/..").text).to eq 'Check GitLab configuration'
    end
  end
end