joshmoreno / sanctum-auth-tests
Auth tests for Laravel Sanctum
v1.0.0
2020-04-24 01:43 UTC
Requires
- illuminate/support: ^6.9|^7.0
- laravel/sanctum: ^2.0.0
This package is auto-updated.
Last update: 2024-10-24 17:13:30 UTC
README
This is for sanctum ^2.0.0
. Follow their docs as usual.
Quick note, ownership of these tests is yours. You're free to edit them however you'd like. Add more tests, remove, refactor...whatever you see fit. After installing, you're free to remove the package!
Installation
composer require joshmoreno/sanctum-auth-tests php artisan sanctumAuthTests:publish # same thing as # php artisan vendor:publish --provider="JoshMoreno\SanctumAuthTests\SanctumAuthTestsServiceProvider" --tag="tests" # you got what you came for, no need to keep the package around. Bye đ composer remove joshmoreno/sanctum-auth-tests
Customize
Reminder, you're free to do whatever you want with the tests after publishing.
By default, the tests assume you're using the typical laravel auth routes for the following:
- login -
route('login')
- logout -
route('logout')
- register -
route('register')
- resend verification email -
route('verification.resend')
- verify email -
verification.verify // not named in laravel âšī¸
- forgot password -
route('password.email')
- update password -
route('password.update')
You can find all of these and more in tests/Feature/ApiAuth/ApiAuthTestCase.php
.