21 lines
516 B
Ruby
21 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
|