mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-25 00:04:33 +02:00
12 lines
287 B
PHP
12 lines
287 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Contracts\Events\RemoveFromStorageEvent;
|
|
use App\Listeners\Storage\RemoveFromStorage;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
test('listening', function () {
|
|
Event::assertListening(RemoveFromStorageEvent::class, RemoveFromStorage::class);
|
|
});
|