nexxtway/react-rainbow

View on GitHub
src/components/MultiSelect/__test__/multiSelect.a11y.spec.js

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import { mount } from 'enzyme';
import axe from '../../../../axe';
import MultiSelect from '..';
import Option from '../../Option';

describe('<MultiSelect/>', () => {
    it('should be accessible', async () => {
        expect.assertions(1);
        const value = [
            {
                label: 'First',
                name: 'first',
            },
            {
                label: 'Second',
                name: 'second',
            },
        ];
        const component = mount(
            <MultiSelect value={value} label="Label">
                <Option name="first" label="First" />
                <Option name="second" label="Second" />
            </MultiSelect>,
        );
        const html = component.html();
        const results = await axe(html);
        expect(results).toHaveNoViolations();
    });
});