Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrades code-mirror, browsermob-proxy and mouse-trap #6940

Merged
merged 33 commits into from
Jun 29, 2019
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove eslint
  • Loading branch information
NishealJ committed Jun 26, 2019
commit 997cf6af6346a28e2e3ad1f0654a1c06052c8190
5 changes: 2 additions & 3 deletions core/tests/protractor_utils/forms.js
Original file line number Diff line number Diff line change
Expand Up @@ -625,11 +625,10 @@ var CodeMirrorChecker = function(elem) {
*/
var _compareTextFromLine = function(
currentLineNumber, scrollTo, Pane, compareDict) {
NishealJ marked this conversation as resolved.
Show resolved Hide resolved
/* eslint-disable */

browser.executeScript(
"$('.CodeMirror-vscrollbar')." + Pane + ".scrollTop(" + String(scrollTo) +
'$(\'.CodeMirror-vscrollbar\').' + Pane + '.scrollTop(' + String(scrollTo) +
');');
/* eslint-enable */
elem.getText().then(function(text) {
// The 'text' arg is a string 2n lines long representing n lines of text
// codemirror has loaded. The (2i)th line contains a line number and the
Expand Down