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

container_registry_shared_examples.rb « features « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06b2b8c621cdfce0d9052d936ffd7f2fa6cb869b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

RSpec.shared_examples 'handling feature network errors with the container registry' do
  it 'displays the error message' do
    visit_container_registry

    expect(page).to have_content 'We are having trouble connecting to the Container Registry'
  end
end