mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
8 lines
239 B
TypeScript
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()
|
|
})
|