test(server/e2e): add more assertions to try to avoid flaky test

This commit is contained in:
Elian Doran
2025-07-30 11:03:12 +03:00
parent a3ba5ca109
commit 66364f5ce0

View File

@@ -73,6 +73,9 @@ test("Tabs are restored in right order", async ({ page, context }) => {
// Select the mid one.
await app.getTab(1).click();
await expect(app.noteTreeActiveNote).toContainText("Text notes");
await expect(app.getTab(0)).toContainText("Code notes");
await expect(app.getTab(1)).toContainText("Text notes");
await expect(app.getTab(2)).toContainText("Mermaid");
// Refresh the page and check the order.
await app.goto( { preserveTabs: true });