wojons/skills

testing-functional-suite

Run comprehensive functional test suite

First seen Feb 28, 2026

Installation

$ npx skills add wojons/skills --skill testing-functional-suite

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from wojons/skills · top by installs.

npx skills add wojons/skills

Browse all from wojons/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Declared

Repository health

Stars 3
License LICENSE
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseMIT
Compatibilityopencode
Declared agents opencode
More metadata
audience
developers
category
testing

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,795 B
  • docs SUMMARY.md 71 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 39 installs

SKILL.md

Functional Test Suite

Run comprehensive functional testing covering unit, integration, and system tests to validate application functionality.

When to use me

Use this skill when:

  • Running complete functional validation before releases
  • Setting up CI/CD pipeline with full test coverage
  • Testing all functional requirements systematically
  • Ensuring code changes don't break existing functionality
  • Preparing for QA review or user acceptance testing

What I do

  1. Unit Testing Layer

- Run isolated component tests - Validate individual functions and methods - Achieve high code coverage (>80%) - Mock external dependencies

  1. Integration Testing Layer

- Test component interactions - Validate API contracts and data flows - Test database and external service integrations - Check error handling across boundaries

  1. System Testing Layer

- Test complete end-to-end workflows - Validate functional requirements - Test user interfaces and interactions - Perform smoke and regression testing

Examples

# Run complete functional test suite
npm run test:functional           # Custom functional suite
npm run test                      # Default test command

# Run in CI/CD pipeline
npm run test:ci                   # CI-optimized testing
npm run test:coverage             # With coverage reporting

# Sequential execution
npm run test:unit && npm run test:integration && npm run test:e2e

# Parallel execution (if supported)
npm run test:all --parallel

Output format

Functional Test Suite Results:
──────────────────────────────
Test Pyramid Execution:

Unit Tests (1,234 tests):
  ✅ Passed: 1,230 (99.7%)
  ⚠️ Skipped: 2
  ❌ Failed: 2
  📊 Coverage: 92%

Integration Tests (87 tests):
  ✅ Passed: 85 (97.7%)
  ❌ Failed: 2
    - Database connection pooling
    - Payment gateway timeout

System Tests (23 tests):
  ✅ Passed: 20 (87.0%)
  ❌ Failed: 3
    - User registration flow
    - Checkout process
    - Admin dashboard

Overall: 1,344 tests, 95.2% pass rate
Critical Paths: 15/18 passed (83.3%)
Recommendation: Fix system test failures before release

Notes

  • Follow test pyramid principle: many unit tests, fewer integration, even fewer system tests
  • Run fast unit tests on every commit
  • Run integration tests on pull requests
  • Run system tests before releases
  • Automate functional testing in CI/CD
  • Track test metrics and trends over time
  • Use test tags to categorize test types
  • Implement flaky test detection and management