__tests__/components/layout/KeyBindings.spec.js

Summary

Maintainability
A
30 mins
Test Coverage
import KeyBindings from 'components/layout/KeyBindings';

const setup = () => shallow(<KeyBindings/>);

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

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