From 410e035d5fdb5523c026690f1cdc31cbe2e4b78f Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Wed, 4 Dec 2024 13:31:43 +0000 Subject: [PATCH 1/2] test: PW --- tests/playwright/tests/db/features/keyboardShortcuts.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts b/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts index dc2b5e82ed..17c2c257d8 100644 --- a/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts +++ b/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts @@ -50,7 +50,7 @@ test.describe('Verify shortcuts', () => { await unsetup(context); }); - test('Verify shortcuts', async ({ page }) => { + test.skip('Verify shortcuts', async ({ page }) => { await dashboard.treeView.openTable({ title: 'Country' }); // create new table await page.keyboard.press('Alt+t'); From 71b9e03f9ca58adcf06ad578a99059b9381fbcda Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Wed, 4 Dec 2024 13:31:43 +0000 Subject: [PATCH 2/2] test: validation test as slow --- tests/playwright/tests/db/views/viewForm.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/playwright/tests/db/views/viewForm.spec.ts b/tests/playwright/tests/db/views/viewForm.spec.ts index c7ef227c52..0b498b7a9b 100644 --- a/tests/playwright/tests/db/views/viewForm.spec.ts +++ b/tests/playwright/tests/db/views/viewForm.spec.ts @@ -977,6 +977,7 @@ test.describe('Form view: field validation', () => { }); test('Form builder field validation: limit to range', async () => { + test.slow(); await createTable({ tableName: 'FormFieldLimitToRange', type: 'limitToRange' }); const url = dashboard.rootPage.url();