We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecfd77e commit f100296Copy full SHA for f100296
README.md
@@ -161,6 +161,22 @@ $command = $this->runArtisan(new MyCommand, ['--name' => 'Jane']);
161
162
### ArtisanAsserts
163
164
+#### `willSeeConfirmation()`
165
+
166
+Checks if confirmation is seen while artisan command execution:
167
168
+```php
169
+$this->willSeeConfirmation('Are you sure?', MyCommand::class);
170
+```
171
172
+#### `willNotSeeConfirmation()`
173
174
+Checks if confirmation is not seen while artisan command execution:
175
176
177
+$this->willNotSeeConfirmation('Are you sure?', OtherCommand::class);
178
179
180
#### `seeArtisanOutput()`
181
182
Checks if specified string is seen as artisan output:
0 commit comments