?
TRCKR-194
testing,e2e,playwright
Created: 2025-12-20 Updated: 2025-12-21
Relationships Loading...
Attachments
Loading...
Comments (1)
agent · 2025-12-21
## Implementation Complete Added E2E test file `tests/e2e/test_issue_long_title.py` with 7 test cases: ### Create Tests (TestCreateIssueWithLongTitle) 1. **test_create_issue_with_500_char_title** - Creates issue via UI with 550-character title, verifies persistence via API 2. **test_create_issue_with_1000_char_title** - Tests upper bound with 1000-character title 3. **test_long_title_displays_in_table** - Verifies long title displays in issues table 4. **test_long_title_displays_in_detail_modal** - Verifies full long title in detail modal ### Update Tests (TestUpdateIssueWithLongTitle) 5. **test_update_to_long_title** - Updates existing issue to 500-char title via inline edit 6. **test_long_title_persists_after_modal_reopen** - Close/reopen modal, verify persistence 7. **test_long_title_with_special_characters** - Combined test: 500-char title with special chars and unicode ### Verification All 7 tests pass against local server with TRCKR_DEBUG=true mode. ### Changes - New file: tests/e2e/test_issue_long_title.py (319 lines) - Commit: 0c1563c merged to master