Fix Tables test

This commit is contained in:
Senthamil Sindhu 2024-06-28 10:49:01 -07:00
parent 473a6d34bd
commit 72eca5ed79
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,9 @@ test("Tables CRUD", async ({ page }) => {
await okButton.click();
});
const databaseNode = explorer.treeNode("DATA/TablesDB");
await databaseNode.expand();
const tableNode = explorer.treeNode(`DATA/TablesDB/${tableId}`);
await expect(tableNode.element).toBeAttached();