Skip to content

Commit 6cab6be

Browse files
committed
Merge branch 'fix-deprecated-tests' of https://github.com/plotly/plotly.js into fix-deprecated-tests
2 parents 7c418a5 + a6dcc4f commit 6cab6be

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

test/jasmine/assets/mouse_event.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ var Lib = require('../../../src/lib');
22

33
module.exports = function(type, x, y, opts) {
44
var visibility = document.visibilityState;
5-
if(visibility && visibility !== 'visible') {
6-
throw new Error('document.visibilityState = "' + visibility + '" - Please make the window visible.');
7-
}
5+
// if(visibility && visibility !== 'visible') {
6+
// throw new Error('document.visibilityState = "' + visibility + '" - Please make the window visible.');
7+
// }
88

99
var fullOpts = {
1010
bubbles: true,

test/jasmine/tests/plot_api_react_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ describe('@noCIdep Plotly.react', function() {
183183
Plotly.newPlot(gd, data, layout)
184184
.then(countPlots)
185185
.then(function() {
186-
layout.title.text = 'XXXXX';
186+
layout.title = { text: 'XXXXX' };
187187
layout.hovermode = 'closest';
188188
data[0].marker = {color: 'rgb(0, 100, 200)'};
189189
return Plotly.react(gd, data, layout);

test/jasmine/tests/sankey_test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,8 @@ describe('sankey tests', function() {
816816

817817
var g = d3Select('.hovertext');
818818
var pos = g.node().getBoundingClientRect();
819-
expect(pos.x).toBeCloseTo(279, -1.5, 'it should have correct x position');
820-
expect(pos.y).toBeCloseTo(500, -1.5, 'it should have correct y position');
819+
expect(pos.x).toBeCloseTo(279, -1.5);
820+
expect(pos.y).toBeCloseTo(500, -1.5);
821821
})
822822
.then(done, done.fail);
823823
});
@@ -1513,7 +1513,7 @@ function assertLabel(content, style) {
15131513

15141514
function assertMultipleLabels(contentArray, styleArray) {
15151515
var g = d3SelectAll('.hovertext');
1516-
expect(g.size()).toEqual(contentArray.length, 'wrong number of hoverlabels, expected to find ' + contentArray.length);
1516+
expect(g.size()).toEqual(contentArray.length);
15171517
g.each(function(el, i) {
15181518
_assertLabelGroup(d3Select(this), contentArray[i], styleArray[i]);
15191519
});

test/jasmine/tests/select_test.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1996,7 +1996,10 @@ describe('Test select box and lasso per trace:', function() {
19961996

19971997
return function(expected) {
19981998
var msg = '(call #' + callNumber + ') lasso points ';
1999-
var lassoPoints = selectedData.lassoPoints || {};
1999+
var lassoPoints = {};
2000+
if (selectedData && selectedData.lassoPoints) {
2001+
lassoPoints = selectedData.lassoPoints;
2002+
}
20002003

20012004
if(subplot) {
20022005
expect(lassoPoints[subplot] || [])

0 commit comments

Comments
 (0)