diff --git a/apps/server-e2e/src/layout/tab_bar.spec.ts b/apps/server-e2e/src/layout/tab_bar.spec.ts index 4ac282e71..3f81eb26a 100644 --- a/apps/server-e2e/src/layout/tab_bar.spec.ts +++ b/apps/server-e2e/src/layout/tab_bar.spec.ts @@ -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 });