> For the complete documentation index, see [llms.txt](https://docs.launchstack.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.launchstack.app/backend/testing/feature-tests.md).

# Feature Tests

LaunchStack follows the Laravel test guides, check out[ the documentation](https://laravel.com/docs/master/testing).

#### The tests are divided by namespaces like:

* Admin
* App
* Blog
* Website
* Auth

#### How to create a new test

```sh
php artisan make:test UserTest
```

#### How to run tests

```bash
php artisan test
```
