summaryrefslogtreecommitdiff
path: root/spec/features/admin/admin_browses_logs_spec.rb
blob: c734a2ef16daef47ec20001b0a8560c0e64c468d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'spec_helper'

describe 'Admin browses logs' do
  before do
    gitlab_sign_in :admin
  end

  it 'shows available log files' do
    visit admin_logs_path

    expect(page).to have_content 'test.log'
    expect(page).to have_content 'githost.log'
    expect(page).to have_content 'application.log'
  end
end