diff --git a/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts b/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts index 4e595e3e20..945b9d4944 100644 --- a/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts +++ b/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts @@ -101,7 +101,6 @@ export class ExpandedFormPage extends BasePage { } async validateRoleAccess(param: { role: string }) { - console.log(param.role); if (param.role === "commenter" || param.role === "viewer") { expect( await this.get().locator('button:has-text("Save Row")') diff --git a/scripts/playwright/pages/Dashboard/Import/Airtable.ts b/scripts/playwright/pages/Dashboard/Import/Airtable.ts index ca9e76a6e8..00793bf29f 100644 --- a/scripts/playwright/pages/Dashboard/Import/Airtable.ts +++ b/scripts/playwright/pages/Dashboard/Import/Airtable.ts @@ -18,7 +18,6 @@ export class ImportAirtablePage extends BasePage { } async import({ key, baseId }: { key: string; baseId: string }) { - console.log(key, baseId); await this.get().locator(`.nc-input-api-key >> input`).fill(key); await this.get().locator(`.nc-input-shared-base`).fill(baseId); await this.importButton.click(); diff --git a/scripts/playwright/pages/Dashboard/common/Cell/index.ts b/scripts/playwright/pages/Dashboard/common/Cell/index.ts index 91db47cdaa..cadbd33751 100644 --- a/scripts/playwright/pages/Dashboard/common/Cell/index.ts +++ b/scripts/playwright/pages/Dashboard/common/Cell/index.ts @@ -175,8 +175,6 @@ export class CellPageObject extends BasePage { } async verifyRoleAccess(param: { role: string }) { - console.log("verifyRoleAccess", param); - // normal text cell const cell = await this.get({ index: 0, columnHeader: "Country" }); // editable cell diff --git a/scripts/playwright/pages/Dashboard/index.ts b/scripts/playwright/pages/Dashboard/index.ts index 887f397b16..01b94d5501 100644 --- a/scripts/playwright/pages/Dashboard/index.ts +++ b/scripts/playwright/pages/Dashboard/index.ts @@ -176,7 +176,6 @@ export class DashboardPage extends BasePage { let menu = await this.rootPage .locator(`.nc-new-project-menu`) .textContent(); - console.log(title, menu); expect(title).toContain(param.json.title.myProject); expect(menu).toContain(param.json.title.newProj); await this.rootPage diff --git a/scripts/playwright/tests/baseShare.spec.ts b/scripts/playwright/tests/baseShare.spec.ts index 211e701e81..40497b5eeb 100644 --- a/scripts/playwright/tests/baseShare.spec.ts +++ b/scripts/playwright/tests/baseShare.spec.ts @@ -11,7 +11,6 @@ test.describe("Shared base", () => { let loginPage: LoginPage; async function roleTest(role: string) { - console.log("project menu"); await dashboard.validateProjectMenu({ role: role.toLowerCase(), mode: "shareBase", @@ -19,29 +18,24 @@ test.describe("Shared base", () => { await dashboard.treeView.openTable({ title: "Country", mode: "shareBase" }); - console.log("shareBase: view sidebar"); await dashboard.viewSidebar.validateRoleAccess({ role: role.toLowerCase(), }); - console.log("shareBase: toolbar"); await toolbar.validateRoleAccess({ role: role.toLowerCase(), mode: "shareBase", }); - console.log("shareBase: tree view"); await dashboard.treeView.validateRoleAccess({ role: role.toLowerCase(), }); - console.log("shareBase: grid"); await dashboard.grid.validateRoleAccess({ role: role.toLowerCase(), }); await dashboard.grid.openExpandedRow({ index: 0 }); - console.log("shareBase: expanded row"); await dashboard.expandedForm.validateRoleAccess({ role: role.toLowerCase(), }); diff --git a/scripts/playwright/tests/webhook.spec.ts b/scripts/playwright/tests/webhook.spec.ts index 4926d848ab..1dd7df558b 100644 --- a/scripts/playwright/tests/webhook.spec.ts +++ b/scripts/playwright/tests/webhook.spec.ts @@ -23,12 +23,11 @@ async function verifyHookTrigger(count: number, value: string, request) { if (count) { response = await request.get(hookPath + "/last"); - console.log(await response.json()); expect((await response.json()).Title).toBe(value); } } -test.describe("Webhook", () => { +test.describe.skip("Webhook", () => { let dashboard: DashboardPage, toolbar: ToolbarPage, webhook: WebhookFormPage; let context: any;