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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/services/user_activates_hipchat_spec.rb')
-rw-r--r--spec/features/projects/services/user_activates_hipchat_spec.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/spec/features/projects/services/user_activates_hipchat_spec.rb b/spec/features/projects/services/user_activates_hipchat_spec.rb
deleted file mode 100644
index cffb780e05d..00000000000
--- a/spec/features/projects/services/user_activates_hipchat_spec.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'User activates HipChat', :js do
- include_context 'project service activation'
-
- context 'with standard settings' do
- before do
- stub_request(:post, /.*api.hipchat.com.*/)
- end
-
- it 'activates service' do
- visit_project_integration('HipChat')
- fill_in('Room', with: 'gitlab')
- fill_in('Token', with: 'verySecret')
-
- click_test_then_save_integration(expect_test_to_fail: false)
-
- expect(page).to have_content('HipChat settings saved and active.')
- end
- end
-
- context 'with custom settings' do
- before do
- stub_request(:post, /.*chat.example.com.*/)
- end
-
- it 'activates service' do
- visit_project_integration('HipChat')
- fill_in('Room', with: 'gitlab_custom')
- fill_in('Token', with: 'secretCustom')
- fill_in('Server', with: 'https://chat.example.com')
-
- click_test_then_save_integration(expect_test_to_fail: false)
-
- expect(page).to have_content('HipChat settings saved and active.')
- end
- end
-end