Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jasalisbury committed Mar 2, 2021
1 parent 01a6806 commit eeef66a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('ResourceSelector', () => {

describe('with multiple entries', () => {
it('allows removal of an item', async () => {
render(<RenderResourceSelector data={[{ value: 'first' }, { value: 'second' }]} />)
render(<RenderResourceSelector data={[{ value: 'first' }, { value: 'second' }]} />);
const text = await screen.findAllByRole('textbox');
expect(text.length).toBe(2);
const remove = screen.queryByRole('button', { name: 'remove name 1' });
Expand Down

0 comments on commit eeef66a

Please sign in to comment.