Files
catalyst/ui/tests/e2e/dashboard.spec.ts
2025-09-02 21:58:08 +02:00

8 lines
239 B
TypeScript

import { expect } from '@playwright/test'
import { login, test } from './util'
test('dashboard title is visible', async ({ page }) => {
await login(page)
await expect(page.getByRole('heading', { name: 'Dashboard' })).toBeVisible()
})