UNPKG

rdview-service

Version:

Rdview service for loading road photos

10 lines (8 loc) 228 B
import { uuidv4 } from '../../src/utils'; describe('uuidv4', () => { it('should return string id', () => { const id = uuidv4(); expect(id).toBeTruthy(); expect(id).toEqual(jasmine.any(String)); }); });