From 551354b1bbc91737d12f40249723e39369ead2ae Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Tue, 27 Feb 2024 18:05:18 -0800 Subject: [PATCH] Add group annotation for tests --- .../Webhooks/SlackNotificationsUponCheckinTest.php | 3 +++ .../Webhooks/SlackNotificationsUponCheckoutTest.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php index b352574ff6..324beda752 100644 --- a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php +++ b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckinTest.php @@ -18,6 +18,9 @@ use Tests\Support\AssertsAgainstSlackNotifications; use Tests\Support\InteractsWithSettings; use Tests\TestCase; +/** + * @group notifications + */ class SlackNotificationsUponCheckinTest extends TestCase { use AssertsAgainstSlackNotifications; diff --git a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckoutTest.php b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckoutTest.php index 91d2917844..fd628d35ed 100644 --- a/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckoutTest.php +++ b/tests/Feature/Notifications/Webhooks/SlackNotificationsUponCheckoutTest.php @@ -20,6 +20,9 @@ use Tests\Support\AssertsAgainstSlackNotifications; use Tests\Support\InteractsWithSettings; use Tests\TestCase; +/** + * @group notifications + */ class SlackNotificationsUponCheckoutTest extends TestCase { use AssertsAgainstSlackNotifications;