# Testing

> Testing Skills

- Skill: `melsaeed276/testing` (Agent Skill, multi-file: 7 files)
- Install (CLI): `npx skillmds@latest add melsaeed276/testing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/melsaeed276/testing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: Melsaeed276 (https://skillmd.com/u/melsaeed276)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/melsaeed276/testing

---


# Testing Skills

## What this domain covers

Testing strategy and patterns for unit, widget, and integration tests; mocking; golden tests; and CI stability.

## When to read it

- Bugs keep coming back (need regression tests).
- UI changes accidentally break layouts at different sizes.
- CI is flaky or slow.

## Subtopics

- Unit tests: [unit_tests.md](./unit_tests.md)
- Widget tests: [widget_tests.md](./widget_tests.md)
- Integration tests: [integration_tests.md](./integration_tests.md)
- Mocking: [mocking.md](./mocking.md)
- Golden tests: [golden_tests.md](./golden_tests.md)
- CI testing: [ci_testing.md](./ci_testing.md)

## Decision guide

- If you need **fast logic confidence**, go to [unit_tests.md](./unit_tests.md).
- If you need **UI behavior and layout confidence**, go to [widget_tests.md](./widget_tests.md) and [golden_tests.md](./golden_tests.md).
- If you need **end-to-end confidence**, go to [integration_tests.md](./integration_tests.md).
- If you need **stable pipelines**, go to [ci_testing.md](./ci_testing.md).

