078dc25b87
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
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();
|
|
});
|