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

logs.rb « admin « steps « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63881d69146fb708e08680fa4b212d44f1cd3cae (plain)
1
2
3
4
5
6
7
8
9
10
11
class Spinach::Features::AdminLogs < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedPaths
  include SharedAdmin

  step 'I should see tabs with available logs' do
    expect(page).to have_content 'test.log'
    expect(page).to have_content 'githost.log'
    expect(page).to have_content 'application.log'
  end
end