M9 — Device diagnostics & debug reporting (connectivity + UPnP desync) #104

Merged
bvandeusen merged 5 commits from dev into main 2026-06-29 19:24:16 -04:00
Showing only changes of commit 782f152d37 - Show all commits
+2 -1
View File
@@ -52,7 +52,7 @@ describe('AdminTabs', () => {
); );
}); });
test('renders all six tabs in order', () => { test('renders all seven tabs in order', () => {
state.pageUrl = new URL('http://localhost/admin'); state.pageUrl = new URL('http://localhost/admin');
render(AdminTabs); render(AdminTabs);
const links = screen.getAllByRole('link'); const links = screen.getAllByRole('link');
@@ -62,6 +62,7 @@ describe('AdminTabs', () => {
'Requests', 'Requests',
'Quarantine', 'Quarantine',
'Playback errors', 'Playback errors',
'Diagnostics',
'Users' 'Users'
]); ]);
}); });