mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
12 lines
275 B
PHP
12 lines
275 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Contracts\Events\CreateArtistSongEvent;
|
|
use App\Listeners\CreateArtistSong;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
test('listening', function () {
|
|
Event::assertListening(CreateArtistSongEvent::class, CreateArtistSong::class);
|
|
});
|