22. Testing Strategy

22. Testing Strategy

Combine static analysis, component tests, accessibility, and visual regression.

Design systems need unusually strong testing because one regression can affect many applications.


Testing pyramid

Diagram source
Mermaid
flowchart TD
    A[Static Analysis]
    B[Unit / Component Tests]
    C[Accessibility Tests]
    D[Visual Regression]
    E[Integration Tests]
    F[Manual QA]

    A --> B --> C --> D --> E --> F

In this chapter

On this page