nexxtway/react-rainbow

View on GitHub
src/components/Calendar/doubleCalendar/yearSelect/__test__/options.spec.js

Summary

Maintainability
C
7 hrs
Test Coverage
import React from 'react';
import { mount } from 'enzyme';
import Options from '../options';

const options = [
    { value: 'option 1', label: 'option 1' },
    { value: 'option 2', label: 'option 2' },
    { value: 'option 3', label: 'option 3' },
];

describe('YearSelect:Options', () => {
    it('should return the right amount of option items', () => {
        const component = mount(<Options options={options} />);

        expect(component.children().length).toBe(3);
    });
    it('should pass the right props to option element', () => {
        const singleOption = [{ value: 'option-1', label: 'option 1', disabled: false }];
        const component = mount(<Options options={singleOption} />);

        expect(component.find('option').props()).toEqual({
            children: 'option 1',
            disabled: false,
            value: 'option-1',
        });
    });
});