import { test, expect } from '@playwright/test'; test('admin can view settings page', async ({ page }) => { await page.goto('http://localhost:5173/settings'); await expect(page.locator('text=Settings')).toBeVisible(); });