Files
animethemes-server/tests/Unit/Events/UpdateRelatedIndicesTest.php
T
2025-07-29 23:31:12 -03:00

12 lines
291 B
PHP

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