@cbinsights/react-d3-graph
Version:
React component to build interactive and configurable graphs with d3 effortlessly
32 lines (25 loc) • 718 B
JavaScript
import React from 'react';
import renderer from 'react-test-renderer';
import Link from '../../../src/components/link/Link';
describe('Snapshot - Link Component', () => {
let that = {};
beforeEach(() => {
that.callbackMock = jest.fn();
that.link = renderer.create(
<Link
x1="2"
y1="2"
x2="4"
y2="4"
opacity="1"
stroke="red"
strokeWidth="2"
onClickLink={that.callbackMock}
/>
);
that.tree = that.link.toJSON();
});
test('should match snapshot', () => {
// expect(that.tree).toMatchSnapshot();
});
});