mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-25 08:14:29 +02:00
12 lines
302 B
PHP
12 lines
302 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Contracts\Events\UpdatePlaylistTracksEvent;
|
|
use App\Listeners\List\UpdatePlaylistTracks;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
test('listening', function (): void {
|
|
Event::assertListening(UpdatePlaylistTracksEvent::class, UpdatePlaylistTracks::class);
|
|
});
|