TDD Red Phase - Write Failing Tests First
TDD Red Phase - Write Failing Tests First是一款testing方向的AI技能,核心价值是Guide test-first development by writing failing tests that describe desired behaviour from GitHub issue context before implementation exists,可用于解决开发者在testing领域的实际问题,帮助用户提升效率、自动化重复任务或优化工作流。
Guide test-first development by writing failing tests that describe desired behaviour from GitHub issue context before implementation exists.
mkdir -p ./skills/tdd-red && curl -sfL https://raw.githubusercontent.com/github/awesome-copilot/main/skills/tdd-red/SKILL.md -o ./skills/tdd-red/SKILL.md Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).
Skill Content
# TDD Red Phase - Write Failing Tests First
Focus on writing clear, specific failing tests that describe the desired behaviour from GitHub issue requirements before any implementation exists.
GitHub Issue Integration
Branch-to-Issue Mapping
- **Extract issue number** from branch name pattern: `*{number}*` that will be the title of the GitHub issue
- **Fetch issue details** using MCP GitHub, search for GitHub Issues matching `*{number}*` to understand requirements
- **Understand the full context** from issue description and comments, labels, and linked pull requests
Issue Context Analysis
- **Requirements extraction** - Parse user stories and acceptance criteria
- **Edge case identification** - Review issue comments for boundary conditions
- **Definition of Done** - Use issue checklist items as test validation points
- **Stakeholder context** - Consider issue assignees and reviewers for domain knowledge
Core Principles
Test-First Mindset
- **Write the test before the code** - Never write production code without a failing test
- **One test at a time** - Focus on a single behaviour or requirement from the issue
- **Fail for the right reason** - Ensure tests fail due to missing implementation, not syntax errors
- **Be specific** - Tests should clearly express what behaviour is expected per issue requirements
Test Quality Standards
- **Descriptive test names** - Use clear, behaviour-focused naming like `returnsValidationError_whenEmailIsInvalid_issue{number}` (adapt casing to your language convention)
- **AAA Pattern** - Structure tests with clear Arrange, Act, Assert sections
- **Single assertion focus** - Each test should verify one specific outcome from issue criteria
- **Edge cases first** - Consider boundary conditions mentioned in issue discussions
Test Patterns (Polyglot)
- **JavaScript/TypeScript**: Use **Jest** or **Vitest** with `describe`/`it` blocks and `expect` assertions
- **Python**: Use **pytest** with descriptive function names and `assert` statements
- **Java/Kotlin**: Use **JUnit 5** with **AssertJ** for fluent assertions
- **C#/.NET**: Use **xUnit** or **NUnit** with **FluentAssertions**
- Apply parameterised/data-driven tests for multiple input scenarios from issue examples
- Create shared test utilities for domain-specific validations outlined in issue
Execution Guidelines
1. **Fetch GitHub issue** - Extract issue number from branch and retrieve full context
2. **Analyse requirements** - Break down issue into testable behaviours
3. **Confirm your plan with the user** - Ensure understanding of requirements and edge cases. NEVER start making changes without user confirmation
4. **Write the simplest failing test** - Start with the most basic scenario from issue. NEVER write multiple tests at once. You will iterate on RED, GREEN, REFACTOR cycle with one test at a time
5. **Verify the test fails** - Run the test to confirm it fails for the expected reason
6. **Link test to issue** - Reference issue number in test names and comments
Red Phase Checklist
- [ ] GitHub issue context retrieved and analysed
- [ ] Test clearly describes expected behaviour from issue requirements
- [ ] Test fails for the right reason (missing implementation)
- [ ] Test name references issue number and describes behaviour
- [ ] Test follows AAA pattern
- [ ] Edge cases from issue discussion considered
- [ ] No production code written yet
🎯 Best For
- QA engineers
- Developers writing unit tests
- UI designers
- Product designers
- Claude users
💡 Use Cases
- Generating test cases for edge conditions
- Writing integration test suites
- Generating component mockups
- Creating design system tokens
📖 How to Use This Skill
- 1
Install the Skill
Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.
- 2
Load into Your AI Assistant
Open Claude or GitHub Copilot and reference the skill. Paste the SKILL.md content or use the system prompt tab.
- 3
Apply TDD Red Phase - Write Failing Tests First to Your Work
Provide context for your task — paste source material, describe your audience, or share existing work to guide the AI.
- 4
Review and Refine
Edit the AI output for accuracy, tone, and completeness. Add human insight where the AI lacks context.
❓ Frequently Asked Questions
Does this generate test mocks?
Many testing skills include mock generation. Check the install command and skill content for details.
Does this work with Figma?
Some design skills integrate with Figma plugins. Check the Works With section for supported tools.
How do I install TDD Red Phase - Write Failing Tests First?
Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/tdd-red/SKILL.md, ready to use.
Can I customize this skill for my team?
Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.
⚠️ Common Mistakes to Avoid
Not testing edge cases
AI tends to generate happy-path tests. Manually review for boundary conditions.
Skipping usability testing
AI-generated designs should be validated with real users before development.
Not reading the full skill
Skills contain important context and edge cases beyond the quick start.