2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-22 00:42:52 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2021-04-14 14:09:18 -04:00
|
|
|
RSpec.describe 'User views services', :js do
|
2020-04-06 05:09:17 -04:00
|
|
|
include_context 'project service activation'
|
2017-09-22 00:42:52 -04:00
|
|
|
|
|
|
|
it 'shows the list of available services' do
|
2020-04-06 05:09:17 -04:00
|
|
|
visit_project_integrations
|
|
|
|
|
2020-02-24 13:09:05 -05:00
|
|
|
expect(page).to have_content('Integrations')
|
2017-09-22 00:42:52 -04:00
|
|
|
expect(page).to have_content('Campfire')
|
2021-03-30 08:10:51 -04:00
|
|
|
expect(page).to have_content('Jira')
|
2017-09-22 00:42:52 -04:00
|
|
|
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-07-29 17:10:10 -04:00
|
|
|
expect(page).to have_content('irker (IRC gateway)')
|
2017-09-21 16:05:44 -04:00
|
|
|
expect(page).to have_content('Packagist')
|
2017-09-22 00:42:52 -04:00
|
|
|
end
|
|
|
|
end
|