Files
animethemes-server/tests/Unit/Events/UpdateRelationsTest.php
T

12 lines
277 B
PHP

<?php
declare(strict_types=1);
use App\Contracts\Events\UpdateRelationsEvent;
use App\Listeners\UpdateRelations;
use Illuminate\Support\Facades\Event;
test('listening', function (): void {
Event::assertListening(UpdateRelationsEvent::class, UpdateRelations::class);
});