2024-08-11 20:35:52 +02:00
|
|
|
import { test, expect } from '@playwright/test'
|
2024-11-13 19:09:50 +01:00
|
|
|
|
2024-08-11 20:35:52 +02: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')
|
2024-08-11 20:35:52 +02:00
|
|
|
})
|