__tests__/components/layout/sidebar/Sidebar.spec.js

Summary

Maintainability
A
30 mins
Test Coverage
import { Sidebar } from 'components/layout/sidebar/Sidebar';

const propSetup = (props = {}) => ({
  ...props
});

const setup = (props) => shallow(<Sidebar { ...propSetup(props) }/>);

describe('COMPONENTS - <Sidebar>', () => {
  test('render Sidebar', () => {
    const component = setup();

    expect(component).toMatchSnapshot();
  });
});