Skip to content
🤖 Consolidated, AI-optimized BMAD docs: llms-full.txt. Fetch this plain text file for complete context.

Testing Options

BMad provides two testing paths: a built-in QA agent for fast test generation and an installable Test Architect module for enterprise-grade test strategy.

FactorQuinn (Built-in QA)TEA Module
Best forSmall-medium projects, quick coverageLarge projects, regulated or complex domains
SetupNothing to install — included in BMMInstall separately via npx bmad-method install
ApproachGenerate tests fast, iterate laterPlan first, then generate with traceability
Test typesAPI and E2E testsAPI, E2E, ATDD, NFR, and more
StrategyHappy path + critical edge casesRisk-based prioritization (P0-P3)
Workflow count1 (Automate)9 (design, ATDD, automate, review, trace, and others)

Quinn is the built-in QA agent in the BMM (Agile suite) module. It generates working tests quickly using your project’s existing test framework — no configuration or additional installation required.

Trigger: QA or bmad-bmm-qa-automate

Quinn runs a single workflow (Automate) that walks through five steps:

  1. Detect test framework — scans package.json and existing test files for your framework (Jest, Vitest, Playwright, Cypress, or any standard runner). If none exists, analyzes the project stack and suggests one.
  2. Identify features — asks what to test or auto-discovers features in the codebase.
  3. Generate API tests — covers status codes, response structure, happy path, and 1-2 error cases.
  4. Generate E2E tests — covers user workflows with semantic locators and visible-outcome assertions.
  5. Run and verify — executes the generated tests and fixes failures immediately.

Quinn produces a test summary saved to your project’s implementation artifacts folder.

Generated tests follow a “simple and maintainable” philosophy:

  • Standard framework APIs only — no external utilities or custom abstractions
  • Semantic locators for UI tests (roles, labels, text rather than CSS selectors)
  • Independent tests with no order dependencies
  • No hardcoded waits or sleeps
  • Clear descriptions that read as feature documentation
  • Quick test coverage for a new or existing feature
  • Beginner-friendly test automation without advanced setup
  • Standard test patterns that any developer can read and maintain
  • Small-medium projects where comprehensive test strategy is unnecessary

TEA is a standalone module that provides an expert agent (Murat) and nine structured workflows for enterprise-grade testing. It goes beyond test generation into test strategy, risk-based planning, quality gates, and requirements traceability.

WorkflowPurpose
Test DesignCreate a comprehensive test strategy tied to requirements
ATDDAcceptance-test-driven development with stakeholder criteria
AutomateGenerate tests with advanced patterns and utilities
Test ReviewValidate test quality and coverage against strategy
TraceabilityMap tests back to requirements for audit and compliance
NFR AssessmentEvaluate non-functional requirements (performance, security)
CI SetupConfigure test execution in continuous integration pipelines
Framework ScaffoldingSet up test infrastructure and project structure
Release GateMake data-driven go/no-go release decisions

TEA also supports P0-P3 risk-based prioritization and optional integrations with Playwright Utils and MCP tooling.

  • Projects that require requirements traceability or compliance documentation
  • Teams that need risk-based test prioritization across many features
  • Enterprise environments with formal quality gates before release
  • Complex domains where test strategy must be planned before tests are written
  • Projects that have outgrown Quinn’s single-workflow approach

Quinn’s Automate workflow appears in Phase 4 (Implementation) of the BMad Method workflow map. A typical sequence:

  1. Implement a story with the Dev workflow (DS)
  2. Generate tests with Quinn (QA) or TEA’s Automate workflow
  3. Validate implementation with Code Review (CR)

Quinn works directly from source code without loading planning documents (PRD, architecture). TEA workflows can integrate with upstream planning artifacts for traceability.

For more on where testing fits in the overall process, see the Workflow Map.