test(pw): remove unwanted console from pw test

This commit is contained in:
Ramesh Mane
2025-10-06 21:02:03 +00:00
parent 110a723913
commit 20f633c0d5
4 changed files with 1 additions and 8 deletions

View File

@@ -39,9 +39,6 @@ export class KanbanPage extends BasePage {
const fromCard = srcStack.locator(`.nc-kanban-item`).nth(from.card);
const toCard = dstStack.locator(`.nc-kanban-item`).nth(to.card);
console.log(await fromCard.allTextContents());
console.log(await toCard.allTextContents());
await fromCard.dragTo(toCard, {
force: true,
sourcePosition: { x: 10, y: 10 },

View File

@@ -177,8 +177,6 @@ export class WorkspacePage extends BasePage {
await this.rootPage.waitForTimeout(1000);
if (role === 'creator' || role === 'owner') {
console.log(await this.container.get().count());
console.log(await this.container.collaborators.count());
expect(await collaborators.isVisible()).toBeTruthy();
} else {
expect(await collaborators.isVisible()).toBeFalsy();

View File

@@ -38,11 +38,10 @@ test.describe.skip('User roles', () => {
for (let i = 0; i < roleDb.length; i++) {
await dashboard.baseView.btn_share.click();
roleDb[i].url = await settings.teams.invite({
roleDb[i].url = await dashboard.settings.teams.invite({
email: roleDb[i].email,
role: roleDb[i].role,
});
console.log(roleDb[i].url);
}
// Role test

View File

@@ -332,7 +332,6 @@ test.describe('Form view with LTAR', () => {
await dashboard.viewSidebar.createFormView({ title: 'NewForm' });
const formUrl = await dashboard.form.topbar.getSharedViewUrl();
console.log(formUrl);
// sign-out
await dashboard.signOut();