fix: align CI tests with current UI text and database naming

Backend conftest.py was hardcoded to patherly_test but CI creates
resolutionflow_test — now reads DATABASE_URL env var first. E2E tests
had stale placeholder text, heading, and landing page assertions.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-03-27 17:02:19 +00:00
parent 9150972de9
commit 9061c91c89
5 changed files with 14 additions and 11 deletions

View File

@@ -7,10 +7,10 @@ test.describe('public route smoke tests', () => {
await page.goto('/landing')
await expect(
page.getByRole('link', { name: 'Get Started Free' }),
page.getByRole('link', { name: 'Start Free' }),
).toBeVisible()
await expect(
page.getByText('Stop writing ticket notes.'),
page.getByText('Resolve tickets faster.'),
).toBeVisible()
})