diff --git a/qa-core/src/account-api/tests/accounts/accounts.cloud.spec.ts b/qa-core/src/account-api/tests/accounts/accounts.cloud.spec.ts index a0b5198f03..0969b72cf9 100644 --- a/qa-core/src/account-api/tests/accounts/accounts.cloud.spec.ts +++ b/qa-core/src/account-api/tests/accounts/accounts.cloud.spec.ts @@ -52,7 +52,8 @@ describe("Accounts", () => { await config.loginAsAccount(createAccountRequest) // Verify self response matches account - await config.api.accounts.self() + const [selfRes, selfBody] = await config.api.accounts.self() + expect(selfBody.email).toBe(email) // Delete account await config.api.accounts.deleteCurrentAccount()