From c9817e8ce0a87550d0be124ab7b92c892f1efd48 Mon Sep 17 00:00:00 2001 From: luke Date: Wed, 29 Sep 2021 11:24:38 +0100 Subject: [PATCH 1/3] Adds documentation for using Pest --- 2.x/installation.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/2.x/installation.md b/2.x/installation.md index 72b1529..fde5225 100644 --- a/2.x/installation.md +++ b/2.x/installation.md @@ -10,7 +10,10 @@ You may use Composer to install Jetstream into your new Laravel project: composer require laravel/jetstream ``` -After installing the Jetstream package, you may execute the `jetstream:install` Artisan command. This command accepts the name of the stack you prefer (`livewire` or `inertia`). In addition, you may use the `--teams` switch to enable team support. The `jetstream:install` command will also install a suite of "feature" tests that provide test coverage for the features provided by Jetstream. +After installing the Jetstream package, you may execute the `jetstream:install` Artisan command. +This command accepts the name of the stack you prefer (`livewire` or `inertia`). In addition, you may use the `--teams` switch to enable team support. +The `jetstream:install` command will also install a suite of "feature" tests that provide test coverage for the features provided by Jetstream. +If you use Pest PHP for testing, you may use the `--pest` switch to install a Pest style suite instead of the default PhpUnit suite. **You are highly encouraged to read through the entire documentation of [Livewire](https://laravel-livewire.com) or [Inertia](https://inertiajs.com) before beginning your Jetstream project.** From b5156b362bc7b7a397dc6c6dd97ea639511ce840 Mon Sep 17 00:00:00 2001 From: luke Date: Wed, 29 Sep 2021 11:24:48 +0100 Subject: [PATCH 2/3] Adds documentation for using Pest --- 2.x/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.x/installation.md b/2.x/installation.md index fde5225..2a4354e 100644 --- a/2.x/installation.md +++ b/2.x/installation.md @@ -13,7 +13,7 @@ composer require laravel/jetstream After installing the Jetstream package, you may execute the `jetstream:install` Artisan command. This command accepts the name of the stack you prefer (`livewire` or `inertia`). In addition, you may use the `--teams` switch to enable team support. The `jetstream:install` command will also install a suite of "feature" tests that provide test coverage for the features provided by Jetstream. -If you use Pest PHP for testing, you may use the `--pest` switch to install a Pest style suite instead of the default PhpUnit suite. +If you want use Pest PHP for testing, you may use the `--pest` switch to install a Pest style suite instead of the default PhpUnit suite. **You are highly encouraged to read through the entire documentation of [Livewire](https://laravel-livewire.com) or [Inertia](https://inertiajs.com) before beginning your Jetstream project.** From 6e06a98c3f2ac964ba4b388f4076ab1b3667c47b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 29 Sep 2021 08:11:54 -0500 Subject: [PATCH 3/3] Update installation.md --- 2.x/installation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/2.x/installation.md b/2.x/installation.md index 2a4354e..6f0ce99 100644 --- a/2.x/installation.md +++ b/2.x/installation.md @@ -12,8 +12,9 @@ composer require laravel/jetstream After installing the Jetstream package, you may execute the `jetstream:install` Artisan command. This command accepts the name of the stack you prefer (`livewire` or `inertia`). In addition, you may use the `--teams` switch to enable team support. + The `jetstream:install` command will also install a suite of "feature" tests that provide test coverage for the features provided by Jetstream. -If you want use Pest PHP for testing, you may use the `--pest` switch to install a Pest style suite instead of the default PhpUnit suite. +If you would like to use [Pest PHP](https://pestphp.com) for testing, you may use the `--pest` switch to install a Pest test suite instead of the default PHPUnit test suite. **You are highly encouraged to read through the entire documentation of [Livewire](https://laravel-livewire.com) or [Inertia](https://inertiajs.com) before beginning your Jetstream project.**