Skip to content

Commit da03ceb

Browse files
committed
test that hoverlabel doesn't get coerced for parcoords
1 parent cd0230e commit da03ceb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/jasmine/tests/parcoords_test.js

+8
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@ describe('parcoords initialization tests', function() {
7979
expect(gd._fullData[0].tickfont).toEqual(expected);
8080
expect(gd._fullData[0].rangefont).toEqual(expected);
8181
});
82+
83+
it('should not coerce hoverlabel', function() {
84+
var gd = Lib.extendDeep({}, mock1);
85+
86+
supplyAllDefaults(gd);
87+
88+
expect(gd._fullData[0].hoverlabel).toBeUndefined();
89+
});
8290
});
8391

8492
describe('parcoords defaults', function() {

0 commit comments

Comments
 (0)