Browse Source

test: remove additional console logs

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/5848/head
Raju Udava 1 year ago committed by Pranav C
parent
commit
27e8b354c3
  1. 2
      tests/playwright/pages/Dashboard/common/Cell/index.ts

2
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) {

Loading…
Cancel
Save