Add notification group

This commit is contained in:
Marcus Moore
2025-10-23 13:53:38 -07:00
parent b85d1f184a
commit 777872d41f
2 changed files with 4 additions and 0 deletions

View File

@@ -7,8 +7,10 @@ use App\Mail\CheckoutAssetMail;
use App\Models\Asset;
use App\Models\User;
use Illuminate\Support\Facades\Mail;
use PHPUnit\Framework\Attributes\Group;
use Tests\TestCase;
#[Group('notifications')]
class BulkCheckoutEmailTest extends TestCase
{
private $assets;

View File

@@ -6,8 +6,10 @@ use App\Models\Asset;
use App\Models\User;
use App\Notifications\CheckoutAssetNotification;
use Illuminate\Support\Facades\Notification;
use PHPUnit\Framework\Attributes\Group;
use Tests\TestCase;
#[Group('notifications')]
class WebhookNotificationsUponBulkAssetCheckoutTest extends TestCase
{
public function test_webbook_is_sent_upon_bulk_asset_checkout()