From 54ca0d1218742de75d3b33e9b43b3e009f766387 Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Mon, 19 Dec 2022 18:01:59 +0000 Subject: [PATCH] Remove unused const --- qa-core/src/config/internal-api/TestConfiguration/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa-core/src/config/internal-api/TestConfiguration/index.ts b/qa-core/src/config/internal-api/TestConfiguration/index.ts index 39a839f58d..cb5e8cdf7f 100644 --- a/qa-core/src/config/internal-api/TestConfiguration/index.ts +++ b/qa-core/src/config/internal-api/TestConfiguration/index.ts @@ -35,9 +35,9 @@ export default class TestConfiguration { async setupAccountAndTenant() { const account = generateAccount() - const [emailValidationResponse, emailValidationJson] = await this.accounts.validateEmail(account.email) - const [tenantIdValidationResponse, tenantIdValidationJson] = await this.accounts.validateTenantId(account.tenantId) - const [accountCreationResponse, accountCreationJson] = await this.accounts.create(account) + await this.accounts.validateEmail(account.email) + await this.accounts.validateTenantId(account.tenantId) + await this.accounts.create(account) await this.auth.login(account.email, account.password) }