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

user_views_services_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: b936a7f38f6a87510fd47a0857e36a42bec00b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User views services', :js do
  include_context 'project service activation'

  it 'shows the list of available services' do
    visit_project_integrations

    expect(page).to have_content('Integrations')
    expect(page).to have_content('Campfire')
    expect(page).to have_content('Jira')
    expect(page).to have_content('Assembla')
    expect(page).to have_content('Pushover')
    expect(page).to have_content('Atlassian Bamboo')
    expect(page).to have_content('JetBrains TeamCity')
    expect(page).to have_content('Asana')
    expect(page).to have_content('Irker (IRC gateway)')
    expect(page).to have_content('Packagist')
  end
end