Test
Skill azadmotala/claude-code-team-builder/examples/saas-dashboard/.claude/skills/test
Run the TenantFlow test suite. Vitest unit tests and Playwright e2e tests.From its SKILL.md
npx -y skills add azadmotala/claude-code-team-builder --skill testAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.9 KB, 216 tokens by cl100k_base, as published. Nobody here has run it
Test
Runs the test suite for TenantFlow.
Usage
/test— run all tests/test --unit— unit tests only (faster)/test --e2e— end-to-end tests only
Workflow
- Install/verify dependencies —
npm installif package-lock has changed - Unit + integration tests —
npm run test - E2E tests —
npx playwright test(requires dev server running or staging URL) - Report — summarize pass/fail counts; if failures, show the failing test names and errors
- If failures: suggest likely causes and fixes before asking user what to do
Project specifics
- Test framework: Vitest (unit/integration) + Playwright (e2e)
- Test directory:
src/**/*.test.ts+e2e/ - Coverage threshold: 80%
- Critical tests: tenant isolation queries, Stripe webhook handlers, invoice generation
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.