Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

checklist.md 891B

123456789101112131415161718192021222324252627282930313233
  1. # QA Automate - Validation Checklist
  2. ## Test Generation
  3. - [ ] API tests generated (if applicable)
  4. - [ ] E2E tests generated (if UI exists)
  5. - [ ] Tests use standard test framework APIs
  6. - [ ] Tests cover happy path
  7. - [ ] Tests cover 1-2 critical error cases
  8. ## Test Quality
  9. - [ ] All generated tests run successfully
  10. - [ ] Tests use proper locators (semantic, accessible)
  11. - [ ] Tests have clear descriptions
  12. - [ ] No hardcoded waits or sleeps
  13. - [ ] Tests are independent (no order dependency)
  14. ## Output
  15. - [ ] Test summary created
  16. - [ ] Tests saved to appropriate directories
  17. - [ ] Summary includes coverage metrics
  18. ## Validation
  19. Run the tests using your project's test command.
  20. **Expected**: All tests pass ✅
  21. ---
  22. **Need more comprehensive testing?** Install [Test Architect (TEA)](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/) for advanced workflows.