From 27e8b354c362edbe67e380a3e5166831e845fee9 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Mon, 19 Jun 2023 17:35:56 +0530 Subject: [PATCH] test: remove additional console logs Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- tests/playwright/pages/Dashboard/common/Cell/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/playwright/pages/Dashboard/common/Cell/index.ts b/tests/playwright/pages/Dashboard/common/Cell/index.ts index c21c756bc6..07edb50cc7 100644 --- a/tests/playwright/pages/Dashboard/common/Cell/index.ts +++ b/tests/playwright/pages/Dashboard/common/Cell/index.ts @@ -283,12 +283,10 @@ export class CellPageObject extends BasePage { const cell = await this.get({ index, columnHeader }); const linkText = await cell.locator('.nc-datatype-link'); - console.log(index, columnHeader); await cell.scrollIntoViewIfNeeded(); if (type === 'bt') { const chips = cell.locator('.chips > .chip'); - console.log('chips', await chips.count()); await expect(await chips.count()).toBe(count); for (let i = 0; i < value.length; ++i) {