@cbinsights/react-d3-graph
Version:
React component to build interactive and configurable graphs with d3 effortlessly
43 lines (36 loc) • 1.24 kB
JavaScript
// import React from 'react';
// import renderer from 'react-test-renderer';
// import Graph from '../../../src/components/graph/Graph';
// import graphMock from './graph.mock.js';
describe('Snapshot - Graph Component', () => {
// let that = {};
// that.nodeColor = 'red';
// that.highlightColor = 'blue';
// that.svgSize = 600;
// that.highlightOpacity = 0.1;
// that.config = {
// height: that.svgSize,
// width: that.svgSize,
// nodeHighlightBehavior: true,
// highlightOpacity: that.highlightOpacity,
// staticGraph: true,
// node: {
// color: that.nodeColor,
// highlightColor: that.highlightColor,
// size: 100
// },
// link: {
// highlightColor: that.highlightColor
// }
// };
// that.mouseOverNodeCallback = jest.fn();
// beforeEach(() => {
// that.graph = renderer.create(
// <Graph id="graphId" data={graphMock} config={that.config} onMouseOverNode={that.mouseOverNodeCallback} />
// );
// that.tree = that.graph.toJSON();
// });
test('should match snapshot', () => {
// expect(that.tree).toMatchSnapshot();
});
});