iblai-ops-test
Installation
SKILL.md
/iblai-ops-test
Add Vitest unit tests and Playwright e2e journeys to an ibl.ai Next.js app and lift coverage above 95%. Also run the touch-test screenshot pass before showing work to the user.
You MUST run pnpm build, pnpm test, and the e2e suite green before
presenting any work. Do NOT show untested code.
Use pnpm as the default package manager. Fall back to npm if pnpm is not installed.
Step 0: Detect what's already there
# Is vitest installed?
grep -E '"vitest"' package.json && echo "vitest: present" || echo "vitest: missing"
# Is playwright installed?
grep -E '"@playwright/test"' package.json && echo "playwright: present" || echo "playwright: missing"