mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
12 lines
293 B
PHP
12 lines
293 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Contracts\Events\FilamentNotificationEvent;
|
|
use App\Listeners\NotifiesFilamentUsers;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
test('listening', function () {
|
|
Event::assertListening(FilamentNotificationEvent::class, NotifiesFilamentUsers::class);
|
|
});
|