File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -198,23 +198,23 @@ $command = $this->runArtisan(new MyCommand, ['--name' => 'Jane']);
198198
199199#### `willSeeConfirmation()`
200200
201- Check if confirmation is seen during artisan command execution:
201+ Check if the confirmation is seen during artisan command execution:
202202
203203```php
204204$this->willSeeConfirmation(' Are you sure? ' , MyCommand::class);
205205```
206206
207207#### `willNotSeeConfirmation()`
208208
209- Check if confirmation is not seen during artisan command execution:
209+ Check if the confirmation is not seen during artisan command execution:
210210
211211```php
212212$this->willNotSeeConfirmation(' Are you sure? ' , MyCommand::class);
213213```
214214
215215#### `willGiveConfirmation()`
216216
217- Check if confirmation is seen during artisan command execution and accept it:
217+ Check if the confirmation is seen during artisan command execution and accept it:
218218
219219```php
220220$this->willGiveConfirmation(' Are you sure? ' , MyCommand::class);
@@ -224,7 +224,7 @@ $this->seeArtisanOutput('Done!');
224224
225225#### `willNotGiveConfirmation()`
226226
227- Check if confirmation is seen during artisan command execution and refuse it:
227+ Check if the confirmation is seen during artisan command execution and refuse it:
228228
229229```php
230230$this->willNotGiveConfirmation(' Are you sure? ' , MyCommand::class);
You can’t perform that action at this time.
0 commit comments