nexxtway/react-rainbow

View on GitHub
src/components/Lookup/__test__/lookup.focusable.spec.js

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import { mount } from 'enzyme';
import Lookup from '..';

describe('<Lookup/>', () => {
    it('should be focusable', () => {
        const component = mount(<Lookup label="Lookup Label" />);
        expect(component).toBeFocusable();
    });
});