Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_activates_irker_spec.rb « services « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56df403499c04caaf1c7d470ecc048d38fe726ed (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'

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