# 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
```
