nexxtway/react-rainbow

View on GitHub
src/components/Select/__test__/select.focusable.spec.js

Summary

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

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