بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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
| 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