Remove flakiness in SCIM tests.

This commit is contained in:
Sam Rose 2024-03-06 17:28:45 +00:00
parent 2946188ab1
commit 6f692723e7
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ interface CreateUserRequestFields {
export function createUserRequest(userData?: Partial<CreateUserRequestFields>) {
const defaultValues = {
externalId: uuid(),
email: generator.email({ domain: "example.com" }),
email: `${uuid()}@example.com`,
firstName: generator.first(),
lastName: generator.last(),
username: generator.name(),