Files
animethemes-server/tests/Feature/Http/Api/FallbackTest.php
T
2025-07-29 23:31:12 -03:00

16 lines
257 B
PHP

<?php
declare(strict_types=1);
use Illuminate\Support\Str;
use function Pest\Laravel\get;
test('abort json', function () {
$response = get(route('api.anime.index').Str::random());
$response->assertJsonStructure([
'message',
]);
});