From 4c1112219cc9d9a1c91aea4a447fe303d99bf071 Mon Sep 17 00:00:00 2001 From: DarkPhoenix2704 Date: Sat, 28 Oct 2023 05:58:23 +0000 Subject: [PATCH] feat(test): multi fields editor placeholder --- .../tests/db/general/multiFieldEditor.spec.ts | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/playwright/tests/db/general/multiFieldEditor.spec.ts diff --git a/tests/playwright/tests/db/general/multiFieldEditor.spec.ts b/tests/playwright/tests/db/general/multiFieldEditor.spec.ts new file mode 100644 index 0000000000..cd7d8f6379 --- /dev/null +++ b/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 () => { + // + }); +});