debian-mirror-gitlab/spec/features/projects/services/user_views_services_spec.rb

23 lines
713 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2021-04-29 21:17:54 +05:30
RSpec.describe 'User views services', :js do
2020-04-22 19:07:51 +05:30
include_context 'project service activation'
2018-03-17 18:26:18 +05:30
it 'shows the list of available services' do
2020-04-22 19:07:51 +05:30
visit_project_integrations
2020-04-08 14:13:33 +05:30
expect(page).to have_content('Integrations')
2018-03-17 18:26:18 +05:30
expect(page).to have_content('Campfire')
2021-04-29 21:17:54 +05:30
expect(page).to have_content('Jira')
2018-03-17 18:26:18 +05:30
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')
2021-10-27 15:23:28 +05:30
expect(page).to have_content('irker (IRC gateway)')
2018-03-17 18:26:18 +05:30
expect(page).to have_content('Packagist')
end
end