Frontend overhaul

This commit is contained in:
Jack Kingsman
2026-02-16 17:28:21 -08:00
parent 58900f7649
commit be007322d2
21 changed files with 968 additions and 795 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ test.describe('Bot functionality', () => {
await page.goto('/');
await expect(page.getByText('Connected')).toBeVisible();
await page.getByText('Radio & Config').click();
await page.getByText('Settings').click();
await page.getByRole('button', { name: /Bot/i }).click();
// The bot name should be visible in the bot list
+2 -2
View File
@@ -26,7 +26,7 @@ test.describe('Radio settings', () => {
await expect(page.getByText('Connected')).toBeVisible();
// --- Step 1: Change the name via settings UI ---
await page.getByText('Radio & Config').click();
await page.getByText('Settings').click();
await page.getByRole('button', { name: /Identity/i }).click();
const nameInput = page.locator('#name');
@@ -47,7 +47,7 @@ test.describe('Radio settings', () => {
await page.reload();
await expect(page.getByText('Connected')).toBeVisible({ timeout: 15_000 });
await page.getByText('Radio & Config').click();
await page.getByText('Settings').click();
await page.getByRole('button', { name: /Identity/i }).click();
await expect(page.locator('#name')).toHaveValue(testName, { timeout: 10_000 });
});