summaryrefslogtreecommitdiffstats
path: root/test/generic-components/graph/Node.test.js
blob: ed0c84e0c17df85006e7669e60f9a012493947b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';
import Node from 'generic-components/graph/Node.jsx';
import {shallow} from 'enzyme';

describe('Node component', () => {
  it('should be rendered', () => {
    const component = shallow(<Node/>);

    expect(component).toHaveLength(1);
  });
});