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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
4384222b
Commit
4384222b
authored
Aug 16, 2016
by
Connor Shea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for jumping between discussions and unhiding toggled discussions.
parent
41007f6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
spec/features/merge_requests/diff_notes_resolve_spec.rb
spec/features/merge_requests/diff_notes_resolve_spec.rb
+18
-0
No files found.
spec/features/merge_requests/diff_notes_resolve_spec.rb
View file @
4384222b
...
@@ -292,6 +292,24 @@ feature 'Diff notes resolve', feature: true, js: true do
...
@@ -292,6 +292,24 @@ feature 'Diff notes resolve', feature: true, js: true do
expect
(
holder
).
to
have_selector
(
'.discussion-next-btn'
)
expect
(
holder
).
to
have_selector
(
'.discussion-next-btn'
)
end
end
end
end
it
'displays next discussion even if hidden'
do
page
.
all
(
'.note-discussion'
).
each
do
|
discussion
|
page
.
within
discussion
do
click_link
'Toggle discussion'
end
end
page
.
within
(
'.issuable-discussion #notes'
)
do
expect
(
page
).
not_to
have_selector
(
'.btn'
,
text:
'Resolve discussion'
)
end
page
.
within
'.line-resolve-all-container'
do
page
.
find
(
'.discussion-next-btn'
).
click
end
expect
(
find
(
'.discussion-with-resolve-btn'
)).
to
have_selector
(
'.btn'
,
text:
'Resolve discussion'
)
end
end
end
context
'changes tab'
do
context
'changes tab'
do
...
...
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