1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-13 00:38:06 +00:00
bramw_baserow/web-frontend/test/utils/string.spec.js
2019-08-26 17:49:28 +00:00

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')
})
})