Browse Source

test: column operations for mm bridge fix

Signed-off-by: mertmit <mertmit99@gmail.com>
feat/export-nest
mertmit 1 year ago
parent
commit
a0adc7e678
  1. 6
      tests/playwright/tests/db/columnMenuOperations.spec.ts

6
tests/playwright/tests/db/columnMenuOperations.spec.ts

@ -79,7 +79,7 @@ test.describe('Column menu operations', () => {
await dashboard.grid.column.create({
title: 'InsertAfterColumn1',
type: 'SingleLineText',
insertAfterColumnTitle: 'Store List',
insertAfterColumnTitle: 'Actor List',
});
await dashboard.closeTab({ title: 'Film' });
@ -98,7 +98,7 @@ test.describe('Column menu operations', () => {
await dashboard.grid.column.create({
title: 'InsertBeforeColumn1',
type: 'SingleLineText',
insertBeforeColumnTitle: 'Store List',
insertBeforeColumnTitle: 'Actor List',
});
await dashboard.closeTab({ title: 'Film' });
@ -113,7 +113,7 @@ test.describe('Column menu operations', () => {
});
await dashboard.grid.column.hideColumn({
title: 'Store List',
title: 'Actor List',
});
await dashboard.closeTab({ title: 'Film' });

Loading…
Cancel
Save