mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
595 B
20 lines
595 B
import { test } from '@playwright/test'; |
|
import { DashboardPage } from '../pages/Dashboard'; |
|
import { SettingsPage } from '../pages/Dashboard/Settings'; |
|
import setup from '../setup'; |
|
|
|
|
|
test.describe.skip('Views', () => { |
|
let dashboard: DashboardPage, settings: SettingsPage; |
|
let context: any; |
|
|
|
test.beforeEach(async ({page}) => { |
|
context = await setup({ page }); |
|
dashboard = new DashboardPage(page, context.project); |
|
settings = new SettingsPage(page); |
|
}) |
|
|
|
test('Create, and delete table, verify in audit tab, rename City table and reorder tables', async () => { |
|
}); |
|
|
|
});
|
|
|