Update dashboard header and map styling (#56)
All checks were successful
Build and Push Image / docker-build-and-push (push) Successful in 2m18s

Reviewed-on: #56
Co-authored-by: AI Agent <ai-agent@campbellwireless.net>
Co-committed-by: AI Agent <ai-agent@campbellwireless.net>
This commit was merged in pull request #56.
This commit is contained in:
2026-02-24 22:25:10 +00:00
committed by shaun
parent ebc8f80bb5
commit 894535b555
3 changed files with 876 additions and 45 deletions

View File

@@ -32,6 +32,7 @@ test.beforeEach(async ({ context }) => {
});
test('dashboard surfaces map stops, stats, and trip status', async ({ page }) => {
const screenshotPath = test.info().outputPath('dashboard.png');
const suffix = uniqueSuffix();
const pastStart = formatDate(-18);
const pastEnd = formatDate(-15);
@@ -72,4 +73,6 @@ test('dashboard surfaces map stops, stats, and trip status', async ({ page }) =>
await expect(page.getByTestId('stat-past-trips')).toHaveText('1');
await expect(page.getByTestId('stat-countries')).toHaveText('1');
await page.screenshot({ path: screenshotPath, fullPage: true });
});