Browse Source

test: table rename

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/5332/head
Raju Udava 1 year ago committed by mertmit
parent
commit
a1e45ad16a
  1. 9
      tests/playwright/tests/undo-redo.spec.ts

9
tests/playwright/tests/undo-redo.spec.ts

@ -354,6 +354,15 @@ test.describe('Undo Redo', () => {
title: 'numberBased',
index: 0,
});
// tabel rename
await dashboard.treeView.renameTable({ title: 'numberBased', newTitle: 'newNameForTest' });
await dashboard.treeView.verifyTable({ title: 'newNameForTest' });
await dashboard.rootPage.waitForTimeout(100);
await undo({ page });
await dashboard.rootPage.waitForTimeout(100);
await dashboard.treeView.verifyTable({ title: 'numberBased' });
});
});

Loading…
Cancel
Save