Files
animethemes-server/tests/Unit/Events/UpdateRelatedIndicesTest.php

12 lines
297 B
PHP

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