2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/tests/unit/utility/uniqueId.spec.js
T
2021-08-01 12:30:50 -07:00

6 lines
147 B
JavaScript

import uniqueId from '../../../src/utility/uniqueId'
test('it generates a unique number', () => {
expect(uniqueId()).not.toEqual(uniqueId())
})