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 5cef392 commit 0c4dd4fCopy full SHA for 0c4dd4f
composer.json
@@ -31,6 +31,7 @@
31
"phpunit/phpunit": "8.5.*"
32
},
33
"scripts": {
34
- "tests": "./vendor/bin/phpunit tests --color=always --stop-on-failure"
+ "tests": "./vendor/bin/phpunit tests --color=always --stop-on-failure",
35
+ "tests-exclude-notification": "./vendor/bin/phpunit tests --color=always --stop-on-failure --exclude-group=notification"
36
}
37
tests/Notification/SlackNotificationTest.php
@@ -11,6 +11,9 @@
11
12
class SlackNotificationTest extends TestCase
13
{
14
+ /**
15
+ * @group notification
16
+ */
17
public static function test_SlackNotification_ShouldNotify(): void
18
19
$notification = new SlackNotification($notifyText = 'Test Notification', $messageType = MessageTypeEnum::ERROR());
0 commit comments