summaryrefslogtreecommitdiff
path: root/spec/features/admin/services/admin_activates_prometheus_spec.rb
blob: 904fe5b406bbcf0a3fcc6be4716740bed56ad625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe 'Admin activates Prometheus' do
  let(:admin) { create(:user, :admin) }

  before do
    sign_in(admin)

    visit(admin_application_settings_services_path)

    click_link('Prometheus')
  end

  it 'activates service' do
    check('Active')
    fill_in('API URL', with: 'http://prometheus.example.com')
    click_button('Save')

    expect(page).to have_content('Application settings saved successfully')
  end
end