بنقرة واحدة
running-e2e-tests
How to run end-to-end tests for workstream. Use when verifying the full dashboard flow.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
How to run end-to-end tests for workstream. Use when verifying the full dashboard flow.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
How to debug issues in workstream. Use when investigating bugs or unexpected behavior.
Definition of done checklist for workstream PRs. Use when preparing a PR for review.
How to set up a local development environment for workstream. Use when onboarding or resetting your dev environment.
How to run unit tests for workstream. Use when writing, modifying, or verifying tests before submitting a PR.
| name | running-e2e-tests |
| description | How to run end-to-end tests for workstream. Use when verifying the full dashboard flow. |
Workstream is a local web application. E2E testing involves starting the server and verifying endpoints respond correctly.
# Start the server
python app.py &
# Test key endpoints
curl http://localhost:8080/
curl http://localhost:8080/api/agents
curl -X POST http://localhost:8080/api/readiness/scan \
-H 'Content-Type: application/json' \
-d '{"repo_url":"https://github.com/happybhati/workstream"}'
# Stop the server
kill %1
make help # List all available targets
make test # Run unit tests
make run # Start the dashboard for manual testing
.env file with at least GITHUB_PAT for full functionality