mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-20 03:09:36 +03:00
bc0d6d219d
* Add aria 1.1 combobox properties * Update dropdown test to account for v-show changes * test: fix dropdown tests * test: fix pointer scroll warnings * refactor: implement uniqueId function * fix: close #1072 remove empty button Co-authored-by: Jeff Sagal <sagalbot@gmail.com>
6 lines
150 B
JavaScript
6 lines
150 B
JavaScript
import uniqueId from '../../../src/utility/uniqueId';
|
|
|
|
test('it generates a unique number', () => {
|
|
expect(uniqueId()).not.toEqual(uniqueId());
|
|
});
|