mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-26 13:25:46 +08:00
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import React from 'react'
|
|
import { mount } from 'enzyme'
|
|
import { ButtonGroup, Button } from 'components'
|
|
import { nativeEvent } from 'tests/utils'
|
|
|
|
describe('ButtonGroup', () => {
|
|
it('should render correctly', () => {
|
|
const wrapper = mount(
|
|
<ButtonGroup>
|
|
<Button>action</Button>
|
|
</ButtonGroup>,
|
|
)
|
|
expect(wrapper.html()).toMatchSnapshot()
|
|
expect(() => wrapper.unmount()).not.toThrow()
|
|
})
|
|
|
|
it('props should be passed to each button', () => {
|
|
const wrapper = mount(
|
|
<ButtonGroup size="mini" type="success">
|
|
<Button>action</Button>
|
|
</ButtonGroup>,
|
|
)
|
|
expect(wrapper.html()).toMatchSnapshot()
|
|
wrapper.setProps({ ghost: true })
|
|
expect(wrapper.html()).toMatchSnapshot()
|
|
expect(() => wrapper.unmount()).not.toThrow()
|
|
})
|
|
|
|
it('should ignore events when group disabled', () => {
|
|
const handler = jest.fn()
|
|
const wrapper = mount(
|
|
<ButtonGroup>
|
|
<Button onClick={handler}>action</Button>
|
|
</ButtonGroup>,
|
|
)
|
|
wrapper.find('button').simulate('click', nativeEvent)
|
|
expect(handler).toHaveBeenCalledTimes(1)
|
|
wrapper.setProps({ disabled: true })
|
|
wrapper.find('button').simulate('click', nativeEvent)
|
|
expect(handler).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('buttons should be displayed vertically', () => {
|
|
const wrapper = mount(
|
|
<ButtonGroup vertical>
|
|
<Button>action1</Button>
|
|
<Button>action2</Button>
|
|
</ButtonGroup>,
|
|
)
|
|
expect(wrapper.html()).toMatchSnapshot()
|
|
expect(() => wrapper.unmount()).not.toThrow()
|
|
})
|
|
})
|