Medium Testing Issue
Missing integration tests for user workflows.
File: src/ui_tests/ (or new test directory)
Severity: MEDIUM
Impact: Undetected workflow bugs
Issues Found:
- No end-to-end user journey tests
- Missing browser automation tests
- No API integration tests
Suggested Fix
Add Playwright tests:
# tests/integration/test_user_workflow.py
def test_user_can_create_and_publish_object(page):
page.goto("/login")
page.fill("#username", "testuser")
page.fill("#password", "password")
page.click("text=Login")
# Continue with object creation workflow
Medium Testing Issue
Missing integration tests for user workflows.
File: src/ui_tests/ (or new test directory)
Severity: MEDIUM
Impact: Undetected workflow bugs
Issues Found:
Suggested Fix
Add Playwright tests: