Skip to content

Commit ae48e4c

Browse files
committed
docs(README): Update testing commands for exception notify
- Add additional commands for testing exception notifications. - Include options for different configurations and verbosity levels. - Enhance clarity on how to run tests with the `artisan` command.
1 parent 5ab0a15 commit ae48e4c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ EXCEPTION_NOTIFY_WEWORK_TOKEN=73a3d5a3-ceff-4da8-bcf3-ff5891778
5656
### Testing for exception notify
5757

5858
```shell
59+
php artisan exception-notify:test --channel=dump --queue-connection=sync --ansi -v
60+
php artisan exception-notify:test --queue-connection=sync --ansi -v
5961
php artisan exception-notify:test --ansi -v
62+
php artisan exception-notify:test --ansi
6063
```
6164

6265
### :camera_flash: Notification examples

tests/Commands/TestCommandTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
try {
5151
artisan(TestCommand::class, [
5252
'--channel' => $channel = 'bark',
53+
'--queue-connection' => 'sync',
5354
'--config' => "app.name={$this->faker()->name()}",
5455
'--verbose' => true,
5556
]);

0 commit comments

Comments
 (0)