All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 12s
- Sidebar: dynamic brand-accent colors, brainstorm section restyled - AI chat general: popup panel with expand/collapse, hides when contextual AI open - AI chat contextual: tabs reordered (Actions first), X close button, height fix - Settings: all tabs restyled, 6 new color presets (sage, terracotta, iron, etc.) - Global color cleanup: emerald/orange hardcoded → brand-accent dynamic - Brainstorm page: orange → brand-accent throughout - PageEntry animation component added to key pages - Floating AI button: bg-brand-accent instead of hardcoded black - i18n: all 15 locales updated with new AI/billing keys - Billing: freemium quota tracking, BYOK, stripe subscription scaffolding - Admin: integrated into new design - AGENTS.md + CLAUDE.md project rules added
2.1 KiB
2.1 KiB
name, description, borrows_from
| name | description | borrows_from |
|---|---|---|
| acceptance-test | Test the implementation against the specification | Phase 5 [T] (acceptance testing) |
Acceptance Test
Goal: Validate the implementation against the specification's acceptance criteria before deploying.
INITIALIZATION
Design Log
Read {output_folder}/_progress/00-design-log.md. Check Current and Backlog for context.
Steps
Step 1: Load Test Context
Gather everything needed for testing:
- Read specification from [D] Design Solution
- Read scenario from [S] Scope Improvement
- Review implementation diff from [I] Implement
- Extract acceptance criteria into a test checklist
Step 2: Prepare Test Environment
Ensure the implementation is running and testable:
- Confirm branch is checked out:
evolution/[scenario-name] - Start local development server if needed
- Navigate to the affected page/view
- Note the URL and any required test data
Step 3: Execute Tests
For each acceptance criterion:
| # | Criterion | Steps | Expected | Actual | Pass? |
|---|---|---|---|---|---|
| 1 | [From spec] | [How to test] | [Expected result] | [What happened] | Y/N |
| 2 | ... | ... | ... | ... | ... |
Also test:
- Responsive: Check all breakpoints defined in spec
- Edge cases: Empty states, long content, error states
- Regression: Verify nothing else broke on the page
- Cross-browser: If specified in project requirements
Step 4: Document Results
Create test report at {output_folder}/evolution/test-reports/:
# Test Report: [Scenario Name]
## Summary
[X/Y criteria passed]
## Results
[Test table from Step 3]
## Issues Found
[List any failures with severity and description]
## Recommendation
[Pass / Pass with notes / Fail — needs rework]
Step 5: Handle Failures
If tests fail:
- Minor issues → Fix in the same branch, retest
- Design issues → Route back to [D] Design Solution
- Scope creep → Log as separate improvement target for next cycle
AFTER COMPLETION
- Update design log
- Suggest next action
- Return to activity menu