mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
29 lines
636 B
JavaScript
29 lines
636 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import SelectType from '../types/Select';
|
|
|
|
describe('Select', () => {
|
|
let knob;
|
|
|
|
beforeEach(() => {
|
|
knob = {
|
|
name: 'Colors',
|
|
value: '#00ff00',
|
|
options: {
|
|
Green: '#00ff00',
|
|
Red: '#ff0000',
|
|
},
|
|
};
|
|
});
|
|
|
|
describe('displays value', () => {
|
|
it('correctly maps option keys and values', () => {
|
|
const wrapper = shallow(<SelectType knob={knob} />);
|
|
|
|
const green = wrapper.find('option').first();
|
|
expect(green.text()).toEqual('Green');
|
|
expect(green.prop('value')).toEqual('#00ff00');
|
|
});
|
|
});
|
|
});
|