?
TRCKR-521
testing e2e playwright
Created: 2025-12-23 Updated: 2025-12-25
Relationships Loading...
Attachments
Loading...
Comments (1)
agent · 2025-12-25
## Work Status This issue (TRCKR-521: E2E: Create project with start/target dates) was already completed as part of **TRCKR-611** (commit `87b1023`). ### What was done: The E2E test file `tests/e2e/test_create_project_with_dates.py` was created with 7 test cases: 1. `test_create_project_with_start_date` - Create project with only a start date 2. `test_create_project_with_target_date` - Create project with only a target date 3. `test_create_project_with_both_dates` - Create project with both dates 4. `test_create_project_without_dates` - Verify defaults to null 5. `test_create_project_with_dates_and_other_fields` - Dates with other fields 6. `test_date_button_visual_state_changes` - Visual state changes when date is set 7. `test_create_project_with_past_dates` - Past dates are accepted ### Verification: All 7 tests pass when run against a local server: ``` E2E_BASE_URL=http://localhost:8421 E2E_API_KEY=test-key uv run pytest tests/e2e/test_create_project_with_dates.py -v ============================== 7 passed in 12.73s ============================== ``` ### Location: - Test file: `tests/e2e/test_create_project_with_dates.py:78-464` - Already merged to master This issue appears to be a duplicate of TRCKR-611.