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

user_activates_prometheus_spec.rb « services « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab372d532aaeb08a01afc8ef77be8ebfbca76787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

require 'spec_helper'

describe 'User activates Prometheus' do
  let(:project) { create(:project) }
  let(:user) { create(:user) }

  before do
    project.add_maintainer(user)
    sign_in(user)

    visit(project_settings_integrations_path(project))

    click_link('Prometheus')
  end

  it 'does not activate service and informs about deprecation' do
    check('Active')
    fill_in('API URL', with: 'http://prometheus.example.com')
    click_button('Save changes')

    expect(page).not_to have_content('Prometheus activated.')
    expect(page).to have_content('Fields on this page has been deprecated.')
  end
end