this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Skip search e2e tests while the input is hidden

The search input was removed from TopBar/Sidebar in 814f540 pending a
full-tree/inbox rebuild on the SDK. Every test in search.test.ts
targets that input via getByPlaceholder("Search your cabinet…"), so
the whole file would fail against HEAD. Wrap the three describes in
.skip with a pointer to 814f540 and an un-skip note.

+8 -3
+8 -3
tests/tests/web/search.test.ts
··· 1 1 // Search: typing navigates to search page, results match, clicking navigates to file. 2 + // 3 + // Skipped: the search input was hidden in commit 814f540 because the current 4 + // filter only covers the loaded directory, not the full cabinet or inbox. 5 + // Un-skip once SDK-backed full-tree/inbox search lands — no assertions need 6 + // to change, only the describe modifiers. 2 7 3 8 import { test, expect } from "../../helpers/web-fixture.js"; 4 9 import { completeSeedPhraseSetup } from "../../helpers/seed-phrase.js"; 5 10 6 - test.describe("search navigation", () => { 11 + test.describe.skip("search navigation", () => { 7 12 test("typing in search bar navigates to /cabinet/search", async ({ 8 13 page, 9 14 webUrl, ··· 64 69 }); 65 70 }); 66 71 67 - test.describe("search results", () => { 72 + test.describe.skip("search results", () => { 68 73 test("uploaded file appears in search results", async ({ 69 74 page, 70 75 webUrl, ··· 214 219 }); 215 220 }); 216 221 217 - test.describe("search with panel shell", () => { 222 + test.describe.skip("search with panel shell", () => { 218 223 test("search page shows breadcrumbs and footer", async ({ 219 224 page, 220 225 webUrl,