123456789101112131415161718192021222324 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe 'Manage > Channels > Facebook', integration: true, required_envs: %w[FACEBOOK_APPLICATION_ID FACEBOOK_APPLICATION_SECRET], type: :system do
- context 'when configuring app' do
- before { visit '/#channels/facebook' }
- it 'works as expected', :use_vcr do
- within :active_content do
- click '.btn--success'
- in_modal do
- fill_in 'application_id', with: ENV['FACEBOOK_APPLICATION_ID']
- fill_in 'application_secret', with: ENV['FACEBOOK_APPLICATION_SECRET']
- click '.btn--success'
- end
- expect(page).to have_text('Configure App')
- end
- end
- end
- end
|