Files
BMAD-METHOD/src/modules/bmm/testarch/knowledge/test-quality.md
Murat K Ozcan df0c3e4bae Port TEA commands into workflows and preload Murat knowledge (#660)
* Port TEA commands into workflows and preload Murat knowledge

* Broke the giant knowledge dump into curated fragments under src/modules/bmm/testarch/knowledge/

* Broke the giant knowledge dump into curated fragments under src/modules/bmm/testarch/knowledge/

* updated the web bunles for tea, and spot updates for analyst and sm

* Replaced the old TEA brief with an indexed knowledge system: the agent now loads topic-specific
  docs from knowledge/ via tea-index.csv, workflows reference those fragments, and risk/level/
  priority guidance lives in the new fragment files

---------

Co-authored-by: Murat Ozcan <murat@mac.lan>
2025-09-30 15:19:55 -05:00

555 B

Test Quality Definition of Done

  • No hard waits (waitForTimeout, cy.wait(ms)); rely on deterministic waits or event hooks.
  • Each spec <300 lines and executes in ≤1.5 minutes.
  • Tests are isolated, parallel-safe, and self-cleaning (seed via API/tasks, teardown after run).
  • Assertions stay visible in test bodies; avoid conditional logic controlling test flow.
  • Suites must pass locally and in CI with the same commands.
  • Promote new tests only after they have failed for the intended reason at least once.

Source: Murat quality checklist.