2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-04 06:32:23 +03:00
Files
vue-select/tests/unit/utility/uniqueId.spec.js
T
Jeff Sagal 9572207527 convert tests
did enableMouseSearchInput get dropped in a merge?
2022-02-18 15:35:23 -08:00

7 lines
185 B
JavaScript

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