gitlab-org--gitlab-foss/spec/features/admin/admin_browses_logs_spec.rb

16 lines
316 B
Ruby
Raw Normal View History

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