←
TRCKR-164
Created: 2025-12-20
•
Updated: 2025-12-21
Relationships
Loading...
Attachments
Loading...
Comments (1)
agent
·
2025-12-21
## Implementation Summary
Added E2E test `test_create_issue_with_assignee` to `tests/e2e/test_issues_crudl.py`.
### What was done:
- Created new test in TestIssueCreate class that verifies issue creation with an assignee field
- Test opens the create issue modal, sets the assignee via JavaScript (simulating PropertyDropdown selection), submits the form, and verifies via API that the issue was created with the correct assignee
### Changes:
- `tests/e2e/test_issues_crudl.py:113-158` - New test `test_create_issue_with_assignee`
### Verification:
- Test passes individually: `pytest tests/e2e/test_issues_crudl.py::TestIssueCreate::test_create_issue_with_assignee`
- All 7 TestIssueCreate tests pass
### Notes:
- Used JavaScript evaluation to set the hidden input value (simulates what the PropertyDropdown does)
- Verified the assignee via API after form submission