Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
Change target node in test
  • Loading branch information
CelineWuest committed Dec 15, 2023
commit 2d81fdfb136159c68954d32afc7bd3fe6b525b04
4 changes: 2 additions & 2 deletions test/jasmine/tests/sankey_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ describe('sankey tests', function() {

Plotly.newPlot(gd, mockCopy)
.then(function() {
_hover(1000, 400);
_hover(200, 250);
})
.then(function() {
d3SelectAll('.sankey-link')
Expand All @@ -1090,7 +1090,7 @@ describe('sankey tests', function() {
expect(l.style.fillOpacity).toEqual('0.4');
});
}).then(function() {
mouseEvent('mouseout', 1000, 400);
mouseEvent('mouseout', 200, 250);
}).then(function() {
d3SelectAll('.sankey-link')
.filter(function(obj) {
Expand Down