Remove translation dependency in CA spec

This commit is contained in:
Luke Bennett 2019-03-07 16:37:26 +00:00
parent b63efb09a5
commit 82e48d8e9b
1 changed files with 0 additions and 19 deletions

View File

@ -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