Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a0a3e299
Commit
a0a3e299
authored
Jul 29, 2019
by
Tanya Pazitny
Committed by
Mayra Cabrera
Jul 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change qa-* class references to rspec-* in spec/features/contextual_sidebar_spec.rb
parent
b6b9ccbb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
app/views/layouts/nav/sidebar/_project.html.haml
app/views/layouts/nav/sidebar/_project.html.haml
+2
-2
app/views/shared/_sidebar_toggle_button.html.haml
app/views/shared/_sidebar_toggle_button.html.haml
+1
-1
spec/features/contextual_sidebar_spec.rb
spec/features/contextual_sidebar_spec.rb
+5
-5
No files found.
app/views/layouts/nav/sidebar/_project.html.haml
View file @
a0a3e299
...
...
@@ -9,7 +9,7 @@
=
@project
.
name
%ul
.sidebar-top-level-items
=
nav_link
(
path:
sidebar_projects_paths
,
html_options:
{
class:
'home'
})
do
=
link_to
project_path
(
@project
),
class:
'shortcuts-project'
,
data:
{
qa_selector:
'project_link'
}
do
=
link_to
project_path
(
@project
),
class:
'shortcuts-project
rspec-project-link
'
,
data:
{
qa_selector:
'project_link'
}
do
.nav-icon-container
=
sprite_icon
(
'home'
)
%span
.nav-item-name
...
...
@@ -163,7 +163,7 @@
-
if
project_nav_tab?
:pipelines
=
nav_link
(
controller:
[
:pipelines
,
:builds
,
:jobs
,
:pipeline_schedules
,
:artifacts
])
do
=
link_to
project_pipelines_path
(
@project
),
class:
'shortcuts-pipelines qa-link-pipelines'
do
=
link_to
project_pipelines_path
(
@project
),
class:
'shortcuts-pipelines qa-link-pipelines
rspec-link-pipelines
'
do
.nav-icon-container
=
sprite_icon
(
'rocket'
)
%span
.nav-item-name
#js-onboarding-pipelines-link
...
...
app/views/shared/_sidebar_toggle_button.html.haml
View file @
a0a3e299
%a
.toggle-sidebar-button.js-toggle-sidebar.qa-toggle-sidebar
{
role:
"button"
,
type:
"button"
,
title:
"Toggle sidebar"
}
%a
.toggle-sidebar-button.js-toggle-sidebar.qa-toggle-sidebar
.rspec-toggle-sidebar
{
role:
"button"
,
type:
"button"
,
title:
"Toggle sidebar"
}
=
sprite_icon
(
'angle-double-left'
,
css_class:
'icon-angle-double-left'
)
=
sprite_icon
(
'angle-double-right'
,
css_class:
'icon-angle-double-right'
)
%span
.collapse-text
=
_
(
"Collapse sidebar"
)
...
...
spec/features/contextual_sidebar_spec.rb
View file @
a0a3e299
...
...
@@ -16,21 +16,21 @@ describe 'Contextual sidebar', :js do
it
'shows flyout navs when collapsed or expanded apart from on the active item when expanded'
do
expect
(
page
).
not_to
have_selector
(
'.js-sidebar-collapsed'
)
find
(
'.
qa
-link-pipelines'
).
hover
find
(
'.
rspec
-link-pipelines'
).
hover
expect
(
page
).
to
have_selector
(
'.is-showing-fly-out'
)
find
(
'
a[data-qa-selector="project_link"]
'
).
hover
find
(
'
.rspec-project-link
'
).
hover
expect
(
page
).
not_to
have_selector
(
'.is-showing-fly-out'
)
find
(
'.
qa
-toggle-sidebar'
).
click
find
(
'.
rspec
-toggle-sidebar'
).
click
find
(
'.
qa
-link-pipelines'
).
hover
find
(
'.
rspec
-link-pipelines'
).
hover
expect
(
page
).
to
have_selector
(
'.is-showing-fly-out'
)
find
(
'
a[data-qa-selector="project_link"]
'
).
hover
find
(
'
.rspec-project-link
'
).
hover
expect
(
page
).
to
have_selector
(
'.is-showing-fly-out'
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment