0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/cypress/support/random.ts

5 lines
142 B
TypeScript
Raw Normal View History

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