Skip to content

Commit

Permalink
chore: remove unhelpful logs
Browse files Browse the repository at this point in the history
  • Loading branch information
devceline committed Feb 28, 2024
1 parent 2a2cddb commit ad9dc6f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/shared/pages/InboxPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ export class InboxPage {
const appCard = this.page.locator('.AppCard__body').nth(nth)
await appCard.locator('.AppCard__body__subscribe').click()

console.log({appCardText: await appCard.innerText()})

await appCard.locator('.AppCard__body__subscribed').getByText('Subscribed', { exact: false }).isVisible()
}

Expand Down Expand Up @@ -89,7 +87,6 @@ export class InboxPage {
async countSubscribedDapps() {

const selected = await this.page.locator('AppSelector__list').all()
console.log({selected})
return (await this.page.locator('.AppSelector__notifications').count() - 1)
}

Expand All @@ -101,7 +98,6 @@ export class InboxPage {
await this.page.getByText('Preferences').nth(1).click()

const firstCheckBoxIsChecked = await this.page.isChecked('.Toggle__checkbox:nth-of-type(1)')
console.log({firstCheckBoxIsChecked})
await expect(this.page.locator('.Toggle__label').first()).toBeVisible()

await this.page.locator('.Toggle').first().click()
Expand Down

0 comments on commit ad9dc6f

Please sign in to comment.