summaryrefslogtreecommitdiff
path: root/spec/features/projects/services/user_activates_irker_spec.rb
blob: fad40fa608537eba861a7a7acc72571169f2fe06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User activates Irker (IRC gateway)' do
  include_context 'project service activation'

  it 'activates service', :js do
    visit_project_integration('Irker (IRC gateway)')
    check('Colorize messages')
    fill_in('Recipients', with: 'irc://chat.freenode.net/#commits')

    click_test_integration

    expect(page).to have_content('Irker (IRC gateway) activated.')
  end
end