8000 Z exponent fix by alexcjohnson · Pull Request #2422 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Z exponent fix #2422

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 2 commits into from
Feb 28, 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
8000
Diff view
Prev Previous commit
🔪 a little unnecessary async in hover tests
  • Loading branch information
alexcjohnson committed Feb 28, 2018
commit ff0cea362cc346f9193489dbeb104aa55613bd46
15 changes: 5 additions & 10 deletions test/jasmine/tests/hover_label_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,7 @@ describe('hover info', function() {
nums: 'x: 1\ny: 3\nz: 2',
name: 'two'
});
})
.then(function() {

_hover(gd, 250, 300);
assertHoverLabelContent({
nums: 'x: 1\ny: 1\nz: 2',
Expand Down Expand Up @@ -539,8 +538,7 @@ describe('hover info', function() {
nums: 'x: 1\ny: 3\nz: 2',
name: 'two'
});
})
.then(function() {

_hover(gd, 250, 300);
assertHoverLabelContent({
nums: 'x: 1\ny: 1\nz: 5.56',
Expand Down Expand Up @@ -615,8 +613,7 @@ describe('hover info', function() {
nums: 'x: 1\ny: 3\nz: 2',
name: 'two'
});
})
.then(function() {

_hover(gd, 250, 300);
assertHoverLabelContent({
nums: 'x: 1\ny: 1\nz: 5.56',
Expand Down Expand Up @@ -724,8 +721,7 @@ describe('hover info', function() {
nums: 'x: 1\ny: 3\nz: 2',
name: 'two'
});
})
.then(function() {

_hover(gd, 250, 300);
assertHoverLabelContent({
nums: 'x: 1\ny: 1\nz: 5.56',
Expand Down Expand Up @@ -763,8 +759,7 @@ describe('hover info', function() {
nums: 'x: 1\ny: 3\nz: 2',
name: 'two'
});
})
.then(function() {

_hover(gd, 250, 270);
assertHoverLabelContent({
nums: 'x: 1\ny: 1\nz: 5.56',
Expand Down
0