This repository has no description
0

Configure Feed

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

Fix flakey test

Nathan Herald (Apr 13, 2026, 3:56 PM +0200) bd591b47 9f1fd2dc

+3 -2
+3 -2
tests/tui.test.ts
··· 321 321 await tui.waitForText(name1, 10000); 322 322 await tui.waitForText(name2, 10000); 323 323 324 - // Type part of name1 to filter 324 + // Type part of name1 to filter — wait for name2 to disappear, 325 + // which proves the filter rendered (not just that the input updated) 325 326 const filterText = name1.slice(-4); 326 327 tui.type(filterText); 327 - await tui.waitForText(filterText, 5000); 328 + await tui.waitForAbsent(name2, 5000); 328 329 329 330 let ss = tui.screenshot(); 330 331 expect(ss.text).toContain(name1);