
Laravel Controller Tests
- 32 installs
- 10 repo stars
- Updated June 13, 2026
- noartem/laravel-vue-skills
Helps with testing & qa tasks.
About
laravel-controller-tests is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted coding.
- laravel-controller-tests
- Testing & QA
- AI-coding skill
Laravel Controller Tests by the numbers
- 32 all-time installs (skills.sh)
- Ranked #1,340 of 2,153 Testing & QA skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/noartem/laravel-vue-skills --skill laravel-controller-testsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 32 |
|---|---|
| repo stars | ★ 10 |
| Last updated | June 13, 2026 |
| Repository | noartem/laravel-vue-skills ↗ |
What it does
Helps with testing & qa tasks.
Files
Controller Tests
Feature tests for endpoints
it('rejects empty email', function () {
$this->post('/register', ['email' => ''])->assertSessionHasErrors('email');
});Better tests
- Move validation to Form Requests; assert errors from the request class
- Extract business logic into Actions; unit test them directly
- Use factories for realistic data; avoid heavy mocking
Related skills
Testing & QAtesting