diff --git a/packages/mui-material/src/Autocomplete/Autocomplete.test.js b/packages/mui-material/src/Autocomplete/Autocomplete.test.js index b8cdc8567f1179..34898508914483 100644 --- a/packages/mui-material/src/Autocomplete/Autocomplete.test.js +++ b/packages/mui-material/src/Autocomplete/Autocomplete.test.js @@ -824,7 +824,7 @@ describe('', () => { expect(handleChange.callCount).to.equal(1); }); - it('Should skip disabled options when navigatin via keyboard', () => { + it('Should skip disabled options when navigating via keyboard', () => { const { getByRole } = render( option === 'two'} @@ -846,7 +846,7 @@ describe('', () => { checkHighlightIs(getByRole('listbox'), 'one'); }); - it('Should skip disabled options at the end of the list when navigatin via keyboard', () => { + it('Should skip disabled options at the end of the list when navigating via keyboard', () => { const { getByRole } = render( option === 'three' || option === 'four'} @@ -868,7 +868,7 @@ describe('', () => { checkHighlightIs(getByRole('listbox'), 'one'); }); - it('Should skip the first disabled option and disabled options at the end of the list when navigatin via keyboard', () => { + it('Should skip the first disabled option and disabled options at the end of the list when navigating via keyboard', () => { const { getByRole } = render( option === 'one' || option === 'five'}