> 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/browser-tests.md).

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