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
Jérome Perrin
gitlab-ce
Commits
9ab5c42d
Commit
9ab5c42d
authored
Jan 06, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed failing markdown button tests
parent
6003f6ea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/features/issues/markdown_toolbar_spec.rb
spec/features/issues/markdown_toolbar_spec.rb
+2
-2
No files found.
spec/features/issues/markdown_toolbar_spec.rb
View file @
9ab5c42d
...
...
@@ -16,7 +16,7 @@ feature 'Issue markdown toolbar', feature: true, js: true do
find
(
'#note_note'
).
native
.
send_key
(
:enter
)
find
(
'#note_note'
).
native
.
send_keys
(
'bold'
)
page
.
evaluate_script
(
'document.
getElementById("note_note")
.setSelectionRange(4, 9)'
)
page
.
evaluate_script
(
'document.
querySelectorAll(".js-main-target-form #note_note")[0]
.setSelectionRange(4, 9)'
)
first
(
'.toolbar-btn'
).
click
...
...
@@ -28,7 +28,7 @@ feature 'Issue markdown toolbar', feature: true, js: true do
find
(
'#note_note'
).
native
.
send_key
(
:enter
)
find
(
'#note_note'
).
native
.
send_keys
(
'underline'
)
page
.
evaluate_script
(
'document.
getElementById("note_note")
.setSelectionRange(4, 50)'
)
page
.
evaluate_script
(
'document.
querySelectorAll(".js-main-target-form #note_note")[0]
.setSelectionRange(4, 50)'
)
find
(
'.toolbar-btn:nth-child(2)'
).
click
...
...
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