Browse Source

feat(test): multi fields editor placeholder

pull/6820/head
DarkPhoenix2704 11 months ago
parent
commit
4c1112219c
  1. 21
      tests/playwright/tests/db/general/multiFieldEditor.spec.ts

21
tests/playwright/tests/db/general/multiFieldEditor.spec.ts

@ -0,0 +1,21 @@
import test from '@playwright/test';
import { DashboardPage } from '../../../pages/Dashboard';
import { GridPage } from '../../../pages/Dashboard/Grid';
import setup from '../../../setup';
test.describe('MultiFieldEditor', () => {
let grid: GridPage, dashboard: DashboardPage;
let context: any;
test.beforeEach(async ({ page }) => {
context = await setup({ page, isEmptyProject: true });
dashboard = new DashboardPage(page, context.base);
grid = dashboard.grid;
await dashboard.treeView.createTable({ title: 'sheet1', baseTitle: context.base.title });
});
test.skip('Hide Columns', async () => {
//
});
});
Loading…
Cancel
Save