summaryrefslogtreecommitdiff
path: root/spec/features/admin/services/admin_activates_prometheus_spec.rb
blob: 35af9dd6c68bdd0c2e2ba74147e2399348068a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Admin activates Prometheus', :js 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