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:
authorConstance Okoghenun <cokoghenun@gitlab.com>2018-04-12 20:49:05 +0300
committerTim Zallmann <tzallmann@gitlab.com>2018-04-12 20:49:05 +0300
commit406915f4dbac9ce0826f0ba1cdcc04fb6a8c3b4c (patch)
tree1ab9df1e2654bc70f3b846221e23c8ef91f1c0fe /spec/features
parentda6933883f42d66ca75e37a90f03d2a5b22e78ec (diff)
Renamed 'Overview' to 'Project' in the contextual navigation at a project level
Diffstat (limited to 'spec/features')
-rw-r--r--spec/features/projects/user_uses_shortcuts_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/projects/user_uses_shortcuts_spec.rb b/spec/features/projects/user_uses_shortcuts_spec.rb
index fb0d8c766fe..47c5a8161d9 100644
--- a/spec/features/projects/user_uses_shortcuts_spec.rb
+++ b/spec/features/projects/user_uses_shortcuts_spec.rb
@@ -11,12 +11,12 @@ describe 'User uses shortcuts', :js do
visit(project_path(project))
end
- context 'when navigating to the Overview pages' do
+ context 'when navigating to the Project pages' do
it 'redirects to the details page' do
find('body').native.send_key('g')
find('body').native.send_key('p')
- expect(page).to have_active_navigation('Overview')
+ expect(page).to have_active_navigation('Project')
expect(page).to have_active_sub_navigation('Details')
end
@@ -24,7 +24,7 @@ describe 'User uses shortcuts', :js do
find('body').native.send_key('g')
find('body').native.send_key('e')
- expect(page).to have_active_navigation('Overview')
+ expect(page).to have_active_navigation('Project')
expect(page).to have_active_sub_navigation('Activity')
end
end