8 lines
320 B
TypeScript
Raw Normal View History

import { test, expect } from '@playwright/test'
2024-11-13 19:09:50 +01:00
test('should navigate to the guests page', async ({ page }) => {
await page.goto('/dashboard/guests')
2024-11-13 19:09:50 +01:00
await expect(page.getByRole('tab', { name: 'Groups' })).toContainText('Groups')
await expect(page.getByRole('tab', { name: 'Guests' })).toContainText('Guests')
})