Skip to content

Commit

Permalink
test(Autocomplete) fix failing test by replacing toBe with toEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
gselderslaghs committed Jan 2, 2025
1 parent 713129e commit 5e88871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/tests/autocomplete/autocompleteSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ describe('Autocomplete Plugin', () => {
);
expect(dropdownAutocompleteIds)
.withContext('Value should equal chosen option.')
.toBe(['Value A', 'Value B']);
.toEqual(['Value A', 'Value B']);
done();
}, 10);
});
Expand Down

0 comments on commit 5e88871

Please sign in to comment.