Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion apps/web/e2e/first-run.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ if (!/speech model/i.test(shell)) fail("nothing warned that recognition is unava
// an app that reads and never writes — which is exactly what shipped once.
await nav.getByRole("button", { name: "Notes" }).click();
await page.waitForTimeout(500);
await page.getByRole("button", { name: "New" }).click();
// `exact`, because the sidebar now offers "New page" as well: a page and a note are the same
// thing, and the tree can make one too. Without it this matches both and Playwright refuses.
await page.getByRole("button", { name: "New", exact: true }).click();
await page.waitForTimeout(700);

const box = page.getByRole("textbox", { name: "Note body" });
Expand Down
Loading