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')
})