# Test

> Run tests (frontend, backend, unit, or all)

- Skill: `openshift/test` (Agent Skill)
- Install (CLI): `npx skillmds@latest add openshift/test`
- Raw SKILL.md: https://api.skillmd.com/api/skills/openshift/test/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: openshift (https://skillmd.com/u/openshift)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/openshift/test

---


# /test

Run tests based on the arguments provided:
- If `$ARGUMENTS` contains "frontend", run `./test-frontend.sh`
- If `$ARGUMENTS` contains "backend", run `./test-backend.sh`
- If `$ARGUMENTS` contains "unit", run `cd frontend && yarn test` and pass any additional arguments after "unit"
- If no arguments or `$ARGUMENTS` contains "all", run `./test-frontend.sh` first (to generate i18n files), then run `./test-backend.sh`

Note: When running all tests, the frontend tests must run first because they generate i18n localization files. If the backend tests run in parallel during i18n generation, the backend vendor check will detect these generated files as git changes and fail.

Examples:
- `/test` or `/test all` - Run all tests
- `/test frontend` - Run frontend tests only
- `/test backend` - Run backend tests only
- `/test unit` - Run Jest unit tests
- `/test unit MyComponent` - Run Jest unit tests matching "MyComponent"
- `/test frontend backend` - Run both frontend and backend tests

Report the results from the test suite(s). If any tests fail, troubleshoot the failures and fix them.

