Manuel Bustillo
cdd3d0adf1
Some checks failed
Playwright Tests / test (pull_request) Failing after 22m57s
7 lines
243 B
TypeScript
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')
|
|
}) |