-
+
Wedding Planner
-
+
Logged in as {JSON.parse(localStorage.getItem('currentUser') || '{}').email}
+
);
diff --git a/tests/guests.spec.ts b/tests/guests.spec.ts
index 3a564d7..8bf139c 100644
--- a/tests/guests.spec.ts
+++ b/tests/guests.spec.ts
@@ -65,7 +65,7 @@ const mockGroupsAPI = ({ page }: { page: Page }) => {
test('should display the list of guests', async ({ page }) => {
await mockGuestsAPI({ page });
- await page.goto('/dashboard/guests');
+ await page.goto('/default/dashboard/guests');
await expect(page.getByRole('tab', { name: 'Groups' })).toBeVisible();
await expect(page.getByRole('tab', { name: 'Guests' })).toBeVisible();
@@ -90,7 +90,7 @@ test('should display the list of guests', async ({ page }) => {
test('should display the list of groups', async ({ page }) => {
await mockGroupsAPI({ page });
- await page.goto('/dashboard/guests');
+ await page.goto('/default/dashboard/guests');
await page.getByRole('tab', { name: 'Groups' }).click();
await expect(page.getByText('There are 2 elements in the list')).toBeVisible();