mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
21 lines
424 B
TypeScript
21 lines
424 B
TypeScript
import { uuid } from '../../src/utils/basic'
|
|
|
|
describe('uuid', () => {
|
|
it('should return String', () => {
|
|
expectTypeOf(uuid()).toEqualTypeOf<string>()
|
|
})
|
|
|
|
it('the return value should be unique', () => {
|
|
const uuid1 = uuid()
|
|
const uuid2 = uuid()
|
|
|
|
expect(uuid1).not.toBe(uuid2)
|
|
})
|
|
|
|
it('should return a string with length 36', () => {
|
|
const uid = uuid(36)
|
|
|
|
expect(uid.length).toBe(36)
|
|
})
|
|
})
|