Browse Source

Merge pull request #9968 from nocodb/nc-test/keyboard-shortcuts

Nc test/keyboard shortcuts
pull/9969/head
Ramesh Mane 7 days ago committed by GitHub
parent
commit
5d2ec15525
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      tests/playwright/tests/db/features/keyboardShortcuts.spec.ts
  2. 1
      tests/playwright/tests/db/views/viewForm.spec.ts

2
tests/playwright/tests/db/features/keyboardShortcuts.spec.ts

@ -50,7 +50,7 @@ test.describe('Verify shortcuts', () => {
await unsetup(context); await unsetup(context);
}); });
test('Verify shortcuts', async ({ page }) => { test.skip('Verify shortcuts', async ({ page }) => {
await dashboard.treeView.openTable({ title: 'Country' }); await dashboard.treeView.openTable({ title: 'Country' });
// create new table // create new table
await page.keyboard.press('Alt+t'); await page.keyboard.press('Alt+t');

1
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('Form builder field validation: limit to range', async () => {
test.slow();
await createTable({ tableName: 'FormFieldLimitToRange', type: 'limitToRange' }); await createTable({ tableName: 'FormFieldLimitToRange', type: 'limitToRange' });
const url = dashboard.rootPage.url(); const url = dashboard.rootPage.url();

Loading…
Cancel
Save