Files
AITrader/tests/e2e/settings.spec.ts
T

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();
});