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

Summary

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

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

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

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

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