mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:01:05 +08:00
32 lines
955 B
JavaScript
32 lines
955 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme'; // eslint-disable-line
|
|
import Array from '../types/Array';
|
|
|
|
describe('Array', () => {
|
|
it('should subscribe to setKnobs event of channel', () => {
|
|
const onChange = jest.fn();
|
|
const wrapper = shallow(
|
|
<Array
|
|
onChange={onChange}
|
|
knob={{ name: 'passions', value: ['Fishing', 'Skiing'], separator: ',' }}
|
|
/>
|
|
);
|
|
|
|
wrapper.simulate('change', { target: { value: 'Fhishing,Skiing,Dancing' } });
|
|
expect(onChange).toHaveBeenCalledWith(['Fhishing', 'Skiing', 'Dancing']);
|
|
});
|
|
|
|
it('should change to an empty array when emptied', () => {
|
|
const onChange = jest.fn();
|
|
const wrapper = shallow(
|
|
<Array
|
|
onChange={onChange}
|
|
knob={{ name: 'passions', value: ['Fishing', 'Skiing'], separator: ',' }}
|
|
/>
|
|
);
|
|
|
|
wrapper.simulate('change', { target: { value: '' } });
|
|
expect(onChange).toHaveBeenCalledWith([]);
|
|
});
|
|
});
|