Manuel Bustillo cdd3d0adf1
Some checks failed
Playwright Tests / test (pull_request) Failing after 22m57s
Remove unused files and configure first dummy test
2024-08-11 20:35:52 +02:00

7 lines
243 B
TypeScript

import { test, expect } from '@playwright/test'
test('should navigate to the guests page', async ({ page }) => {
await page.goto('/dashboard/guests')
await expect(page.getByRole('heading', { name: 'Guests' })).toContainText('Guests')
})