Reorder themes

This commit is contained in:
Jack Kingsman
2026-03-10 21:27:05 -07:00
parent 18a465fde8
commit d8bb747152
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ test.describe('Health & UI basics', () => {
await expect(page.getByRole('status', { name: 'Radio OK' })).toBeVisible();
// Sidebar is visible with key sections
await expect(page.getByRole('heading', { name: 'Conversations' })).toBeVisible();
await expect(page.getByRole('navigation', { name: 'Conversations' })).toBeVisible();
await expect(page.getByText('Packet Feed')).toBeVisible();
await expect(page.getByText('Node Map')).toBeVisible();
});

View File

@@ -34,7 +34,7 @@ test.describe('Sidebar search/filter', () => {
await expect(page.getByText(nameB, { exact: true })).toBeVisible();
// Type partial name to filter
const searchInput = page.getByPlaceholder('Search...');
const searchInput = page.getByLabel('Search conversations');
await searchInput.fill(`alpha${suffix}`);
// Only nameA should be visible