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

12 lines
269 B
PHP

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