๐งช Automated Tests
SaaSykit comes with an ever-growing test suite that covers the most important parts of the application.
Just like any Laravel-based application, you can run the tests by running the following command:
php artisan test
Tests are located in the tests
directory. For more information about Laravel tests, check the official documentation.
We keep covering more parts of the application with tests to mitigate any bugs that might arise and ensure smooth feature development for you.
tip
Make sure to create a testing database and set the DB_DATABASE
environment variable in your .env.testing
file to point to that database. This way, you won't mess up your development database while running the tests.