summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2019-03-07 17:02:50 +0000
committerRémy Coutable <remy@rymai.me>2019-03-07 17:02:50 +0000
commit380fa8835594c9dccff1b8c77673076534310faa (patch)
tree4b6903848697ce91ca42116492063876e25967cb
parentb63efb09a5c864047924cd2d84527b47dd563d5f (diff)
parent82e48d8e9b54a1c79f472071f89d43322378c33f (diff)
downloadgitlab-ce-380fa8835594c9dccff1b8c77673076534310faa.tar.gz
Merge branch 'remove-translation-dep-in-ca-spec' into 'master'
Remove translation dependency in CA spec Closes #58653 See merge request gitlab-org/gitlab-ce!25882
-rw-r--r--spec/features/cycle_analytics_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/features/cycle_analytics_spec.rb b/spec/features/cycle_analytics_spec.rb
index f4b2b9033ab..48edc764a8e 100644
--- a/spec/features/cycle_analytics_spec.rb
+++ b/spec/features/cycle_analytics_spec.rb
@@ -90,25 +90,6 @@ describe 'Cycle Analytics', :js do
end
end
end
-
- context "when my preferred language is Spanish" do
- before do
- user.update_attribute(:preferred_language, 'es')
-
- project.add_maintainer(user)
- sign_in(user)
- visit project_cycle_analytics_path(project)
- wait_for_requests
- end
-
- it 'shows the content in Spanish' do
- expect(page).to have_content('Estado del Pipeline')
- end
-
- it 'resets the language to English' do
- expect(I18n.locale).to eq(:en)
- end
- end
end
context "as a guest" do