一键导入
webapp-testing
Guide for writing tests: unit tests, integration tests, and end-to-end testing strategies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for writing tests: unit tests, integration tests, and end-to-end testing strategies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Systematic debugging strategies for finding and fixing bugs
Guide for building web frontends with HTML, CSS, and JavaScript frameworks
Guide for building Model Context Protocol (MCP) servers and tools
Patterns and strategies for safely refactoring code
Security best practices for web applications and Node.js code
Guide for creating, testing, and publishing cmdr skills
基于 SOC 职业分类
| name | webapp-testing |
| description | Guide for writing tests: unit tests, integration tests, and end-to-end testing strategies |
When the user asks you to write tests, test a feature, or set up testing:
Choose the right test level:
Test structure — follow Arrange-Act-Assert (AAA) pattern:
test('description', () => {
// Arrange — set up test data
// Act — call the function under test
// Assert — check the result
});
Test naming — use descriptive names: "should return empty array when input is empty"
node:test with node:assert