koel/tests/Feature/V6/DataTest.php
2022-07-27 10:49:33 +02:00

25 lines
553 B
PHP

<?php
namespace Tests\Feature\V6;
class DataTest extends TestCase
{
public function testIndex(): void
{
$this->getAs('/api/data')->assertJsonStructure([
'settings',
'playlists',
'current_user',
'use_last_fm',
'use_you_tube',
'use_i_tunes',
'allow_download',
'supports_transcoding',
'cdn_url',
'current_version',
'latest_version',
'song_count',
'song_length',
]);
}
}