Генерация тестов для Tailwind и Nativewind

testing

add-test is a Claude Code skill that scaffolds tests for Tailwind utilities and Nativewind features following the project's established conventions. Tests are placed in `src/__tests__/` and rely on the `renderCurrentTest()` helper from `src/test-utils.tsx`, where the test name is the CSS class being verified. The skill takes a class name or feature as an argument, searches for similar existing tests to pick the right file, determines the expected React Native style output, and writes the test accordingly. For custom utilities like `elevation`, `tint`, or `ripple`, expected output includes those props directly rather than inside `style`. After generating the test, it runs `yarn test` to confirm everything passes. Ideal for Nativewind v5 developers who need to quickly add test coverage for new CSS classes or features.