mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
|
import { describe, expect, it } from 'vitest'
|
||
|
import { generateId, getRandomInt } from '..'
|
||
|
|
||
|
describe('rand', () => {
|
||
|
it('generateId should work', () => {
|
||
|
expect(generateId()).to.be.a('number')
|
||
|
})
|
||
|
|
||
|
it('getRandomInt should work', () => {
|
||
|
expect(getRandomInt(1000)).lessThan(1000)
|
||
|
})
|
||
|
})
|