0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/cypress/support/random.js

5 lines
126 B
JavaScript
Raw Normal View History

export function randomString(prefix = '') {
const uuid = () => Cypress._.random(0, 1e6)
return `${prefix}${uuid()}`
}