Skip to content

Commit

Permalink
feature(Autocomplete) fix spectest linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
gselderslaghs committed Jan 6, 2025
1 parent 8b43f78 commit 2091a0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/tests/autocomplete/autocompleteSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,10 @@ describe('Autocomplete Plugin', () => {
done();
}, 10);
});

it('setOptions should select multiple options', (done) => {
const normal = document.querySelector('#normal-autocomplete');
const autocompleteInstance = resetAutocomplete(normal, [
resetAutocomplete(normal, [
{ id: 1, text: 'Value A' },
{ id: 2, text: 'Value B' },
{ id: 3, text: 'Value C' }
Expand Down

0 comments on commit 2091a0c

Please sign in to comment.