Rename role badges to present participle (Organizing, Attending)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 22:34:36 +01:00
parent 8885dbd722
commit fd8724db8f
5 changed files with 10 additions and 10 deletions

View File

@@ -110,7 +110,7 @@ test.describe('US3: Bookmark reflects attending status', () => {
// Navigate to list via back link
await page.locator('.detail__back').click()
await expect(page.getByText('Attendee')).toBeVisible()
await expect(page.getByText('Attending')).toBeVisible()
await expect(page.getByText('Watching')).not.toBeVisible()
})
})
@@ -139,7 +139,7 @@ test.describe('US4: RSVP cancellation preserves watch status', () => {
// Navigate to list via back link
await page.locator('.detail__back').click()
await expect(page.getByText('Watching')).toBeVisible()
await expect(page.getByText('Attendee')).not.toBeVisible()
await expect(page.getByText('Attending')).not.toBeVisible()
})
})
@@ -212,7 +212,7 @@ test.describe('US7: Watcher upgrades to attendee', () => {
// Navigate to list via back link
await page.locator('.detail__back').click()
await expect(page.getByText('Attendee')).toBeVisible()
await expect(page.getByText('Attending')).toBeVisible()
await expect(page.getByText('Watching')).not.toBeVisible()
})
})