Remove unused const

This commit is contained in:
Pedro Silva 2022-12-19 18:01:59 +00:00
parent aefa3a65c2
commit 54ca0d1218
1 changed files with 3 additions and 3 deletions

View File

@ -35,9 +35,9 @@ export default class TestConfiguration<T> {
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)
}