We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d17de0 commit be95cf9Copy full SHA for be95cf9
1 file changed
frontend/e2e/specs/parties.spec.ts
@@ -120,11 +120,11 @@ test.describe('Party detail — 8-tab layout', () => {
120
}
121
})
122
123
- test('tab list has 8-column grid layout', async ({ authenticatedPage: page }) => {
+ test('tab list uses line variant with horizontal scroll', async ({ authenticatedPage: page }) => {
124
const tabList = page.getByRole('tablist')
125
await expect(tabList).toBeVisible()
126
- // Verify the CSS grid class from [partyId].tsx:34
127
- await expect(tabList).toHaveClass(/grid-cols-8/)
+ // Verify the line-variant tab layout from [partyId].tsx:48
+ await expect(tabList).toHaveClass(/border-b/)
128
129
130
test('Overview tab is selected by default', async ({ authenticatedPage: page }) => {
0 commit comments