8612042 dropped the static "Account Management" heading in favor of the
account name (rendered as a dynamic h1). Switch the smoke test to the
"Settings" SectionLabel — a stable h2 that survives the redesign.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
37 lines
992 B
TypeScript
37 lines
992 B
TypeScript
import { expect, test } from '@playwright/test'
|
|
|
|
test.describe('authenticated navigation smoke tests', () => {
|
|
test('dashboard loads for an authenticated user', async ({ page }) => {
|
|
await page.goto('/')
|
|
|
|
await expect(page.getByTestId('app-shell')).toBeVisible()
|
|
await expect(
|
|
page.getByRole('heading', { name: /Good (morning|afternoon|evening)/ }),
|
|
).toBeVisible()
|
|
})
|
|
|
|
test('session history page loads', async ({ page }) => {
|
|
await page.goto('/sessions')
|
|
|
|
await expect(
|
|
page.getByRole('heading', { name: 'Session History', exact: true }),
|
|
).toBeVisible()
|
|
})
|
|
|
|
test('feedback page loads', async ({ page }) => {
|
|
await page.goto('/feedback')
|
|
|
|
await expect(
|
|
page.getByRole('heading', { name: 'Send Feedback' }),
|
|
).toBeVisible()
|
|
})
|
|
|
|
test('account settings page loads', async ({ page }) => {
|
|
await page.goto('/account')
|
|
|
|
await expect(
|
|
page.getByRole('heading', { name: 'Settings' }),
|
|
).toBeVisible()
|
|
})
|
|
})
|