8000 Bump mapbox gl to 0.44.0 by etpinard · Pull Request #2361 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Bump mapbox gl to 0.44.0 #2361

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

Merged
merged 15 commits into from
Feb 14, 2018
Merged
Changes from 1 commit
Commits
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
revert patch in (un)hover event data assertion
  • Loading branch information
etpinard committed Feb 13, 2018
commit 0ef2ba68623097d39daa1f0cefd6afbc8b064860
8 changes: 4 additions & 4 deletions test/jasmine/tests/scattermapbox_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -907,8 +907,8 @@ describe('@noCI Test plotly events on a scattermapbox plot:', function() {
expect(pt.lon).toEqual(10, 'points[0].lon');
expect(pt.pointNumber).toEqual(0, 'points[0].pointNumber');

expect(evt.clientX).toBeDefined('event.clientX');
expect(evt.clientY).toBeDefined('event.clientY');
expect(evt.clientX).toEqual(pointPos[0], 'event.clientX');
expect(evt.clientY).toEqual(pointPos[1], 'event.clientY');
});
});

Expand Down Expand Up @@ -937,8 +937,8 @@ describe('@noCI Test plotly events on a scattermapbox plot:', function() {
expect(pt.lon).toEqual(10, 'points[0].lon');
expect(pt.pointNumber).toEqual(0, 'points[0].pointNumber');

expect(evt.clientX).toBeDefined('event.clientX');
expect(evt.clientY).toBeDefined('event.clientY');
expect(evt.clientX).toEqual(nearPos[0], 'event.clientX');
expect(evt.clientY).toEqual(nearPos[1], 'event.clientY');
}).then(done);
});
});
Expand Down
0