From rafayels-engineering
Run all tests (Go unit tests + frontend tests). Use after implementing features, fixing bugs, or before creating PRs to verify correctness.
npx claudepluginhub rafayelgardishyan/rafayels-marketplace --plugin rafayels-engineeringThis skill is limited to using the following tools:
```bash
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
make test-all
make test-all runs both Go and frontend test suites:
go test -race -count=1 across all packages (excludes example/)frontend/ and modules/chat/frontend/Run individual suites when debugging:
make test # Go only
make test-frontend # Frontend only (Vitest)
make test-e2e # Playwright E2E (requires make docker-up + seed)
Tests require built embed prerequisites (chat frontend bundle + email templates):
make build-modules # Build chat frontend bundle
make build-emails # Compile MJML templates
On a fresh clone, run /getting-started first — it handles all prerequisites.
This runs unit tests only. For quality checks (lint, typecheck), use /check.
For E2E tests, use make test-e2e (requires Docker + SurrealDB).