Increase timeout on BeaconViewDialog (#33607)

standard 1s doesn't seem long enough to avoid flakes
This commit is contained in:
David Baker
2026-05-26 18:52:04 +01:00
committed by GitHub
parent 7ea28d3829
commit 2b4f983bb7
@@ -101,9 +101,12 @@ describe("<BeaconViewDialog />", () => {
lat: 51,
});
// marker added
await waitFor(() => {
expect(mockMarker.addTo).toHaveBeenCalledWith(mockMap);
});
await waitFor(
() => {
expect(mockMarker.addTo).toHaveBeenCalledWith(mockMap);
},
{ timeout: 5000 },
);
});
it("does not render any own beacon status when user is not live sharing", () => {