# Browser Tests

The E2E tests in LaunchStack it's powered by Laravel Dusk, you can find more info on [Laravel Documentation](https://laravel.com/docs/master/dusk).

#### Create a new Dusk test class

```
php artisan dusk:make User
```

#### Create a new Dusk page class

```
php artisan dusk:page User
```

#### How to run tests

```
php artisan dusk
```
