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
d85e9965
Commit
d85e9965
authored
Jun 26, 2019
by
Rajat Jain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub manual_sorting flag
parent
06585944
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
spec/features/groups/issues_spec.rb
spec/features/groups/issues_spec.rb
+8
-2
No files found.
spec/features/groups/issues_spec.rb
View file @
d85e9965
...
...
@@ -102,6 +102,10 @@ describe 'Group issues page' do
end
context
'manual ordering'
do
before
do
stub_feature_flags
(
manual_sorting:
true
)
end
let!
(
:issue1
)
{
create
(
:issue
,
project:
project
,
title:
'Issue #1'
)
}
let!
(
:issue2
)
{
create
(
:issue
,
project:
project
,
title:
'Issue #2'
)
}
let!
(
:issue3
)
{
create
(
:issue
,
project:
project
,
title:
'Issue #3'
)
}
...
...
@@ -138,10 +142,12 @@ describe 'Group issues page' do
to_index:
2
,
list_to_index:
0
)
wait_for_requests
page
.
within
(
'.manual-ordering'
)
do
expect
(
find
(
'.issue:nth-child(1) .title'
)).
to
have_content
(
'Issue #2'
)
expect
(
find
(
'.issue:nth-child(2) .title'
)).
to
have_content
(
'Issue #
1
'
)
expect
(
find
(
'.issue:nth-child(3) .title'
)).
to
have_content
(
'Issue #
3
'
)
expect
(
find
(
'.issue:nth-child(2) .title'
)).
to
have_content
(
'Issue #
3
'
)
expect
(
find
(
'.issue:nth-child(3) .title'
)).
to
have_content
(
'Issue #
1
'
)
end
end
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