debian-mirror-gitlab/spec/features/projects/integrations/user_activates_prometheus_spec.rb
2022-07-16 19:58:13 +02:00

22 lines
516 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'User activates Prometheus' do
include_context 'project integration activation'
before do
stub_request(:get, /.*prometheus.example.com.*/)
end
it 'saves and activates integration', :js do
visit_project_integration('Prometheus')
check('Active')
fill_in('API URL', with: 'http://prometheus.example.com')
click_button('Save changes')
expect(page).to have_content('Prometheus settings saved and active.')
end
end