Skip to content

Commit

Permalink
fixes linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
mperrotti committed Jun 28, 2022
1 parent 49b3061 commit 3264f1a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/__tests__/Autocomplete.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,9 @@ describe('Autocomplete', () => {
})

it('allows the value to be 0', () => {
const {getByDisplayValue} = HTMLRender(<LabelledAutocomplete menuProps={{items: mockItems, selectedItemIds: []}} inputProps={{value: 0}} />)
const {getByDisplayValue} = HTMLRender(
<LabelledAutocomplete menuProps={{items: mockItems, selectedItemIds: []}} inputProps={{value: 0}} />
)

expect(getByDisplayValue('0')).toBeDefined()
})
Expand Down

0 comments on commit 3264f1a

Please sign in to comment.