From 9b62279aa2c74350a401a2c28cc09098eb405e25 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Tue, 9 Sep 2025 11:30:39 -0700 Subject: [PATCH] Fix tests --- apps/e2e/tests/backend/backend-helpers.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/e2e/tests/backend/backend-helpers.ts b/apps/e2e/tests/backend/backend-helpers.ts index 990436bc2..d8c61ccae 100644 --- a/apps/e2e/tests/backend/backend-helpers.ts +++ b/apps/e2e/tests/backend/backend-helpers.ts @@ -204,6 +204,10 @@ export namespace Auth { "sub": expect.any(String), "role": "authenticated", "branchId": "main", + "displayName": expect.toSatisfy(() => true), + "primaryEmail": expect.toSatisfy(() => true), + "primaryEmailVerified": expect.toSatisfy(() => true), + "selectedTeamId": expect.toSatisfy(() => true), }); } }