2022-04-04 11:22:00 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.describe 'Bizible content security policy', feature_category: :purchase do
|
2022-04-04 11:22:00 +05:30
|
|
|
before do
|
|
|
|
stub_config(extra: { one_trust_id: SecureRandom.uuid })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has proper Content Security Policy headers' do
|
|
|
|
visit root_path
|
|
|
|
|
|
|
|
expect(response_headers['Content-Security-Policy']).to include('https://cdn.bizible.com/scripts/bizible.js')
|
|
|
|
end
|
|
|
|
end
|