summaryrefslogtreecommitdiff
path: root/spec/features/projects/integrations/user_views_services_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/integrations/user_views_services_spec.rb')
-rw-r--r--spec/features/projects/integrations/user_views_services_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/features/projects/integrations/user_views_services_spec.rb b/spec/features/projects/integrations/user_views_services_spec.rb
new file mode 100644
index 00000000000..559461f911f
--- /dev/null
+++ b/spec/features/projects/integrations/user_views_services_spec.rb
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe 'User views integrations', :js do
+ include_context 'project integration activation'
+
+ it 'shows the list of available integrations' 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