We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c976dbb commit ca6661cCopy full SHA for ca6661c
test/jasmine/tests/sankey_test.js
@@ -830,6 +830,11 @@ describe('sankey tests', function() {
830
expect(pt.hasOwnProperty('source')).toBeTruthy();
831
expect(pt.hasOwnProperty('target')).toBeTruthy();
832
expect(pt.hasOwnProperty('flow')).toBeTruthy();
833
+
834
+ expect(pt.flow.hasOwnProperty('concentration')).toBeTruthy();
835
+ expect(pt.flow.hasOwnProperty('labelConcentration')).toBeTruthy();
836
+ expect(pt.flow.hasOwnProperty('value')).toBeTruthy();
837
+ expect(pt.flow.hasOwnProperty('links')).toBeTruthy();
838
})
839
.then(function() { return _unhover('node'); })
840
.then(function(d) {
0 commit comments