Skip to content

Commit

Permalink
yarn prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Oct 13, 2020
1 parent 47fe0de commit 7d61955
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions packages/material-ui/src/Autocomplete/Autocomplete.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,18 +177,16 @@ describe('<Autocomplete />', () => {
});

it('should work with filterSelectedOptions too', () => {
const options = ["Foo", "Bar", "Baz"];
const options = ['Foo', 'Bar', 'Baz'];
const { getByRole } = render(
<Autocomplete
multiple
filterSelectedOptions
autoHighlight
value={options.slice(0, 1)}
options={options}
renderInput={(params) => (
<TextField {...params} autoFocus />
)}
/>
renderInput={(params) => <TextField {...params} autoFocus />}
/>,
);
const textbox = getByRole('textbox');

Expand Down

0 comments on commit 7d61955

Please sign in to comment.