mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-13 00:38:06 +00:00
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
import { uuid } from '@/utils/string'
|
|
|
|
describe('test string utils', () => {
|
|
test('test uuid', () => {
|
|
const value = uuid()
|
|
expect(typeof value).toBe('string')
|
|
})
|
|
})
|