Manuel Bustillo 39907b0105
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 33s
Add copyright notice / copyright_notice (pull_request) Successful in 53s
Playwright Tests / test (pull_request) Successful in 2m16s
Fix tests
2024-11-13 19:26:51 +01:00

8 lines
320 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('tab', { name: 'Groups' })).toContainText('Groups')
await expect(page.getByRole('tab', { name: 'Guests' })).toContainText('Guests')
})