Establish systematic confidence in UI behavior through the right mix of visual regression, interaction testing, and accessibility assertions.
Treat testing as a design input, not a post-ship safety net. The goal is not maximum coverage; it is catching the bugs that matter most without drowning the team in maintenance.
Consult the accessibility testing reference when the testing strategy needs automated axe checks, screen reader validation, or keyboard traversal tests.
Consult the component accessibility reference when testing custom components for focus management, ARIA correctness, and keyboard behavior.
Consult the interaction design reference when validating workflows under stress, error, or edge-case conditions.
Consult the error-recovery reference when testing validation behavior, recoverable field errors, or abandonment paths.
Consult the loading feedback and perceived performance reference when testing loading states, skeletons, stale-data cues, or perceived-performance behavior.
MANDATORY PREPARATION
Users start this workflow with /test. Once this skill is active, load $frontend-design — it contains design principles, anti-patterns, and the Context Gathering Protocol. Follow that protocol before proceeding — if no design context exists yet, you MUST load $setup first. Additionally gather: the most common UI bugs currently escaping to production, the team's tolerance for test maintenance, and which parts of the UI change most frequently.
Assess Testing Needs
Identify what is breaking and what should be caught:
Map bug escape routes:
- Visual regressions (unintended layout shifts, broken spacing, missing assets)
- Interaction failures (buttons that do nothing, broken forms, dead links)
- State bugs (stale data, race conditions, incorrect loading states)
- Accessibility defects (missing labels, keyboard traps, color contrast failures)
- Cross-browser or cross-device inconsistencies
Evaluate current coverage:
- What is already tested? What is tested but provides no signal?
- Which tests fail randomly and get ignored (flaky tests erode trust)
- How long does the test suite take? Slow suites get bypassed.
Prioritize by risk and churn:
- High-traffic user paths (checkout, signup, core workflows)
- UI surfaces that change frequently (design-system components)
- Areas with known historical bugs
- Accessibility-critical surfaces (forms, navigation, modals)
Testing Dimensions
Visual Regression
Catch unintended visual changes before they ship.
What to capture:
- Component states (default, hover, focus, active, disabled, loading, error)
- Full-page layouts at representative breakpoints
- Cross-browser rendering differences (focus styles, form controls, fonts)
Baseline discipline:
- Treat baselines as team assets, not personal screenshots
- Review intentional changes in pull requests, not after merge
- Re-baseline immediately after intentional design updates to prevent noise
Anti-flake practices:
- Wait for fonts, images, and animations to settle before capturing
- Mock or freeze dynamic content (timestamps, random data, animations)
- Use deterministic test data and fixed viewport sizes
- Isolate tests from network variability; stub API responses
Scope boundaries:
- Test design-system components exhaustively
- Test page layouts at a few key breakpoints, not every pixel width
- Do not test third-party widgets you do not control (embeds, ads)
Interaction Testing
Validate that user actions produce correct outcomes.
Component-level interactions:
- Form submission, validation, and error recovery
- Modal open/close, focus trapping, and escape behavior
- Dropdown, accordion, tab, and disclosure state transitions
- Button actions and their side effects
User flow validation:
- Multi-step workflows (checkout, onboarding, wizard flows)
- Navigation and routing behavior
- State persistence across browser back/forward
- Concurrent actions (rapid clicking, double submissions)
Test data strategy:
- Use realistic but deterministic data
- Cover edge cases (empty inputs, maximum lengths, special characters)
- Include error-state responses, not just happy-path stubs
Accessibility Assertions
Embed accessibility validation into the testing pipeline.
Automated checks (run on every build):
- axe-core or equivalent for WCAG rule violations
- Color contrast minimums (4.5:1 normal text, 3:1 large text / UI components)
- Semantic HTML validation (heading order, landmark regions, label associations)
- Focus management (visible focus indicators, logical tab order)
Keyboard traversal tests:
- Tab through entire flows without a mouse
- Validate that all interactive elements are reachable
- Confirm that focus traps in modals and escape routes work
- Test that skip links and bypass blocks function
Screen reader smoke tests (for critical paths):
- Announcement of dynamic content changes (live regions)
- Meaningful accessible names and descriptions
- State announcements (expanded/collapsed, selected, required)
- Error messaging that surfaces to assistive technology
Motion and animation:
- Verify
prefers-reduced-motion is respected
- Confirm no seizure-inducing flashing (under 3 flashes per second)
Test Pyramid for UI
Balance speed, confidence, and maintenance cost:
| Layer |
Scope |
Speed |
Purpose |
| Unit (component) |
Single component, mocked dependencies |
Fast (< 1s) |
Logic, rendering, prop handling |
| Integration (component + context) |
Component with real providers, stubs |
Medium (< 10s) |
Interaction behavior, state transitions |
| End-to-end (full browser) |
Real browser, real network or stubs |
Slow (< 30s per test) |
Critical user flows, cross-page behavior |
| Visual regression |
Screenshot comparison |
Medium (parallelizable) |
Unintended visual changes |
Guidance:
- Push tests down the pyramid when possible. A component test is faster and more precise than an E2E test for button behavior.
- Reserve E2E for user journeys that span multiple pages or require real browser behavior (routing, auth, payment).
- Run visual regression in CI on every pull request, not just before release.
Tool Selection
Match the tool to the team's stack and the testing layer:
| Need |
Strong options |
Considerations |
| Component unit/integration |
Vitest + Testing Library, Jest + Testing Library |
Framework-agnostic; prefer Testing Library queries that mirror user behavior |
| End-to-end critical flows |
Playwright, Cypress |
Playwright for speed and cross-browser parallelism; Cypress for simpler setup |
| Visual regression |
Chromatic, Loki, Playwright screenshots, Percy |
Chromatic for Storybook integration; Playwright for in-house baseline management |
| Accessibility automation |
axe-core, @axe-core/react, Playwright + axe |
Integrate into CI; treat as warnings, not blockers, until baseline is clean |
| Interaction / user flow |
Playwright, Cypress, Storybook Test Runner |
Storybook Test Runner for isolated component interactions; Playwright/Cypress for full flows |
Pragmatic rules:
- Prefer one E2E tool and one component test tool. Tool proliferation fragments expertise.
- If the project uses Storybook, add interaction tests there before adding a separate component test suite.
- Integrate accessibility checks into the existing test runner, not as a separate tool chain.
Anti-Patterns
- Test implementation details: Assert on what the user sees and does, not internal state or CSS class names.
- Ignore flaky tests: A flaky test is worse than no test. Fix or delete it immediately.
- Test everything through E2E: Slow suites discourage running tests. Push logic down to component tests.
- Snapshot everything: Snapshot tests catch changes but do not explain intent. Use them sparingly for markup stability, not for behavior.
- Separate accessibility testing from the main pipeline: Accessibility checks that run manually once per sprint find nothing consistently.
- Mock the browser environment: Use a real browser for E2E and visual regression. jsdom and happy-dom are fine for component logic, not for layout or interaction fidelity.
- Test third-party widgets: Do not baseline or assert on embeds, maps, ads, or chat widgets you do not control.
- Skip cross-browser testing: At minimum verify focus styles, form controls, and layout in the browsers your users actually use.
- Leave baselines stale: An outdated baseline hides regressions. Re-baseline after intentional visual changes.
Verify Testing Confidence
Before shipping the testing strategy:
1---2name: test3description: Build or improve a UI testing strategy covering visual regression, interaction testing, and accessibility assertions. Use when the user asks to add tests, set up testing, fix flaky tests, improve test coverage, validate UI behavior, catch visual bugs, or establish confidence in shipping frontend changes.4---5
6Establish systematic confidence in UI behavior through the right mix of visual regression, interaction testing, and accessibility assertions.
7
8Treat testing as a design input, not a post-ship safety net. The goal is not maximum coverage; it is catching the bugs that matter most without drowning the team in maintenance.
9
10Consult the [accessibility testing](../frontend-design/reference/accessibility-testing.md) reference when the testing strategy needs automated axe checks, screen reader validation, or keyboard traversal tests.
11Consult the [component accessibility](../frontend-design/reference/component-accessibility.md) reference when testing custom components for focus management, ARIA correctness, and keyboard behavior.
12Consult the [interaction design](../frontend-design/reference/interaction-design.md) reference when validating workflows under stress, error, or edge-case conditions.
13Consult the [error-recovery](../frontend-design/reference/error-recovery.md) reference when testing validation behavior, recoverable field errors, or abandonment paths.
14Consult the [loading feedback and perceived performance](../frontend-design/reference/loading-feedback-and-perceived-performance.md) reference when testing loading states, skeletons, stale-data cues, or perceived-performance behavior.
15
16## MANDATORY PREPARATION
17
18Users start this workflow with `/test`. Once this skill is active, load $frontend-design — it contains design principles, anti-patterns, and the **Context Gathering Protocol**. Follow that protocol before proceeding — if no design context exists yet, you MUST load $setup first. Additionally gather: the most common UI bugs currently escaping to production, the team's tolerance for test maintenance, and which parts of the UI change most frequently.
19
20## Assess Testing Needs
21
22Identify what is breaking and what should be caught:
23
241. **Map bug escape routes**:
25 - Visual regressions (unintended layout shifts, broken spacing, missing assets)
26 - Interaction failures (buttons that do nothing, broken forms, dead links)
27 - State bugs (stale data, race conditions, incorrect loading states)
28 - Accessibility defects (missing labels, keyboard traps, color contrast failures)
29 - Cross-browser or cross-device inconsistencies
30
312. **Evaluate current coverage**:
32 - What is already tested? What is tested but provides no signal?
33 - Which tests fail randomly and get ignored (flaky tests erode trust)
34 - How long does the test suite take? Slow suites get bypassed.
35
363. **Prioritize by risk and churn**:
37 - High-traffic user paths (checkout, signup, core workflows)
38 - UI surfaces that change frequently (design-system components)
39 - Areas with known historical bugs
40 - Accessibility-critical surfaces (forms, navigation, modals)
41
42## Testing Dimensions
43
44### Visual Regression
45
46Catch unintended visual changes before they ship.
47
48**What to capture**:
49- Component states (default, hover, focus, active, disabled, loading, error)
50- Full-page layouts at representative breakpoints
51- Cross-browser rendering differences (focus styles, form controls, fonts)
52
53**Baseline discipline**:
54- Treat baselines as team assets, not personal screenshots
55- Review intentional changes in pull requests, not after merge
56- Re-baseline immediately after intentional design updates to prevent noise
57
58**Anti-flake practices**:
59- Wait for fonts, images, and animations to settle before capturing
60- Mock or freeze dynamic content (timestamps, random data, animations)
61- Use deterministic test data and fixed viewport sizes
62- Isolate tests from network variability; stub API responses
63
64**Scope boundaries**:
65- Test design-system components exhaustively
66- Test page layouts at a few key breakpoints, not every pixel width
67- Do not test third-party widgets you do not control (embeds, ads)
68
69### Interaction Testing
70
71Validate that user actions produce correct outcomes.
72
73**Component-level interactions**:
74- Form submission, validation, and error recovery
75- Modal open/close, focus trapping, and escape behavior
76- Dropdown, accordion, tab, and disclosure state transitions
77- Button actions and their side effects
78
79**User flow validation**:
80- Multi-step workflows (checkout, onboarding, wizard flows)
81- Navigation and routing behavior
82- State persistence across browser back/forward
83- Concurrent actions (rapid clicking, double submissions)
84
85**Test data strategy**:
86- Use realistic but deterministic data
87- Cover edge cases (empty inputs, maximum lengths, special characters)
88- Include error-state responses, not just happy-path stubs
89
90### Accessibility Assertions
91
92Embed accessibility validation into the testing pipeline.
93
94**Automated checks** (run on every build):
95- axe-core or equivalent for WCAG rule violations
96- Color contrast minimums (4.5:1 normal text, 3:1 large text / UI components)
97- Semantic HTML validation (heading order, landmark regions, label associations)
98- Focus management (visible focus indicators, logical tab order)
99
100**Keyboard traversal tests**:
101- Tab through entire flows without a mouse
102- Validate that all interactive elements are reachable
103- Confirm that focus traps in modals and escape routes work
104- Test that skip links and bypass blocks function
105
106**Screen reader smoke tests** (for critical paths):
107- Announcement of dynamic content changes (live regions)
108- Meaningful accessible names and descriptions
109- State announcements (expanded/collapsed, selected, required)
110- Error messaging that surfaces to assistive technology
111
112**Motion and animation**:
113- Verify `prefers-reduced-motion` is respected
114- Confirm no seizure-inducing flashing (under 3 flashes per second)
115
116## Test Pyramid for UI
117
118Balance speed, confidence, and maintenance cost:
119
120| Layer | Scope | Speed | Purpose |
121|-------|-------|-------|---------|
122| Unit (component) | Single component, mocked dependencies | Fast (< 1s) | Logic, rendering, prop handling |
123| Integration (component + context) | Component with real providers, stubs | Medium (< 10s) | Interaction behavior, state transitions |
124| End-to-end (full browser) | Real browser, real network or stubs | Slow (< 30s per test) | Critical user flows, cross-page behavior |
125| Visual regression | Screenshot comparison | Medium (parallelizable) | Unintended visual changes |
126
127**Guidance**:
128- Push tests down the pyramid when possible. A component test is faster and more precise than an E2E test for button behavior.
129- Reserve E2E for user journeys that span multiple pages or require real browser behavior (routing, auth, payment).
130- Run visual regression in CI on every pull request, not just before release.
131
132## Tool Selection
133
134Match the tool to the team's stack and the testing layer:
135
136| Need | Strong options | Considerations |
137|------|----------------|----------------|
138| Component unit/integration | Vitest + Testing Library, Jest + Testing Library | Framework-agnostic; prefer Testing Library queries that mirror user behavior |
139| End-to-end critical flows | Playwright, Cypress | Playwright for speed and cross-browser parallelism; Cypress for simpler setup |
140| Visual regression | Chromatic, Loki, Playwright screenshots, Percy | Chromatic for Storybook integration; Playwright for in-house baseline management |
141| Accessibility automation | axe-core, @axe-core/react, Playwright + axe | Integrate into CI; treat as warnings, not blockers, until baseline is clean |
142| Interaction / user flow | Playwright, Cypress, Storybook Test Runner | Storybook Test Runner for isolated component interactions; Playwright/Cypress for full flows |
143
144**Pragmatic rules**:
145- Prefer one E2E tool and one component test tool. Tool proliferation fragments expertise.
146- If the project uses Storybook, add interaction tests there before adding a separate component test suite.
147- Integrate accessibility checks into the existing test runner, not as a separate tool chain.
148
149## Anti-Patterns
150
151- **Test implementation details**: Assert on what the user sees and does, not internal state or CSS class names.
152- **Ignore flaky tests**: A flaky test is worse than no test. Fix or delete it immediately.
153- **Test everything through E2E**: Slow suites discourage running tests. Push logic down to component tests.
154- **Snapshot everything**: Snapshot tests catch changes but do not explain intent. Use them sparingly for markup stability, not for behavior.
155- **Separate accessibility testing from the main pipeline**: Accessibility checks that run manually once per sprint find nothing consistently.
156- **Mock the browser environment**: Use a real browser for E2E and visual regression. jsdom and happy-dom are fine for component logic, not for layout or interaction fidelity.
157- **Test third-party widgets**: Do not baseline or assert on embeds, maps, ads, or chat widgets you do not control.
158- **Skip cross-browser testing**: At minimum verify focus styles, form controls, and layout in the browsers your users actually use.
159- **Leave baselines stale**: An outdated baseline hides regressions. Re-baseline after intentional visual changes.
160
161## Verify Testing Confidence
162
163Before shipping the testing strategy:
164
165- [ ] The highest-risk user flows have automated coverage
166- [ ] Visual baselines are reviewed in pull requests
167- [ ] Accessibility checks run in CI and have a clean or documented-exceptions baseline
168- [ ] Flaky tests are identified and either fixed or removed
169- [ ] The full test suite runs in under the team's patience threshold (target: < 5 minutes for CI feedback)
170- [ ] Test failures produce actionable error messages, not opaque stack traces
171- [ ] Cross-browser coverage matches actual user browser distribution
172- [ ] Team members can run tests locally without complex setup
173- [ ] Test data is deterministic and does not depend on external services during test execution