Skip to content

Commit

Permalink
feat #79 - Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 16, 2020
1 parent b03ef1c commit d19715b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Select/Select.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('Select', () => {
})

describe('icon', () => {
it('should render an icon for the option if is passed in', () => {
it('should render an icon for the option if it is passed in', () => {
const select = mount(<Select options={iconOptions} />)

select.find('.ant-select-selector').simulate('mousedown')
Expand Down Expand Up @@ -151,7 +151,7 @@ describe('Select', () => {
wrapper = mount(<Select options={iconOptions} showSearch />)
})

it('should render an input as a search bar is search is enabled', () => {
it('should render an input as a search bar if search is enabled', () => {
expect(wrapper.find('input')).toHaveLength(1)
})

Expand Down

0 comments on commit d19715b

Please sign in to comment.