UNPKG
rdview-service
Version:
latest (2.0.0)
2.0.0
1.1.2
1.1.1
1.1.0
1.0.0
Rdview service for loading road photos
rdview-service
/
test
/
utils
/
uuid.spec.ts
10 lines
(8 loc)
•
228 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ uuidv4 }
from
'../../src/utils'
;
describe
(
'uuidv4'
,
() =>
{
it
(
'should return string id'
,
() =>
{
const
id =
uuidv4
();
expect
(id).
toBeTruthy
();
expect
(id).
toEqual
(jasmine.
any
(
String
)); }); });