debian-mirror-gitlab/spec/features/sentry_js_spec.rb

29 lines
642 B
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Sentry' do
let(:sentry_regex_path) { '\/sentry.*\.chunk\.js' }
2019-12-26 22:10:19 +05:30
it 'does not load sentry if sentry is disabled' do
allow(Gitlab.config.sentry).to receive(:enabled).and_return(false)
visit new_user_session_path
expect(has_requested_sentry).to eq(false)
end
2021-04-17 20:07:23 +05:30
it 'loads sentry if sentry is enabled' do
2019-12-26 22:10:19 +05:30
stub_sentry_settings
visit new_user_session_path
expect(has_requested_sentry).to eq(true)
end
def has_requested_sentry
page.all('script', visible: false).one? do |elm|
2020-06-23 00:09:42 +05:30
elm[:src] =~ /#{sentry_regex_path}$/
2019-12-26 22:10:19 +05:30
end
end
end