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/integrations_settings_spec.rb')
-rw-r--r--spec/features/integrations_settings_spec.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/features/integrations_settings_spec.rb b/spec/features/integrations_settings_spec.rb
index 70ce2f55161..f460e051516 100644
--- a/spec/features/integrations_settings_spec.rb
+++ b/spec/features/integrations_settings_spec.rb
@@ -11,19 +11,17 @@ RSpec.describe 'Integration settings', feature_category: :integrations do
sign_in(user)
end
- context 'with Shimo Zentao integration records' do
+ context 'with Zentao integration records' do
before do
- create(:integration, project: project, type_new: 'Integrations::Shimo', category: 'issue_tracker')
create(:integration, project: project, type_new: 'Integrations::Zentao', category: 'issue_tracker')
end
- it 'shows settings without Shimo Zentao', :js do
+ it 'shows settings without Zentao', :js do
visit namespace_project_settings_integrations_path(namespace_id: project.namespace.full_path,
project_id: project.path)
expect(page).to have_content('Add an integration')
expect(page).not_to have_content('ZenTao')
- expect(page).not_to have_content('Shimo')
end
end
end