Rename Best RSSI to Strongest Neighbor. Closes #136.

This commit is contained in:
Jack Kingsman
2026-03-31 13:10:02 -07:00
parent 9f4737d350
commit c83f9b0005
4 changed files with 20 additions and 30 deletions
+3 -1
View File
@@ -124,7 +124,9 @@ describe('linked channel references', () => {
it('ignores invalid or embedded channel-like text', () => {
expect(
findLinkedChannelReferences('skip #Bad #bad--name abc#ops #ops- #opsRoom #ops_room #good-room,')
findLinkedChannelReferences(
'skip #Bad #bad--name abc#ops #ops- #opsRoom #ops_room #good-room,'
)
).toEqual([]);
});
});
@@ -283,6 +283,8 @@ describe('RawPacketFeedView', () => {
fireEvent.click(screen.getByRole('button', { name: /show stats/i }));
fireEvent.change(screen.getByLabelText('Stats window'), { target: { value: 'session' } });
expect(screen.getAllByText('Alpha').length).toBeGreaterThan(0);
expect(screen.getByText('Strongest Neighbor')).toBeInTheDocument();
expect(screen.getByText('-70 dBm best heard')).toBeInTheDocument();
});
it('marks unresolved neighbor identities explicitly', () => {