mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
31 lines
722 B
PHP
31 lines
722 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
class DataTest extends TestCase
|
|
{
|
|
public function testIndex(): void
|
|
{
|
|
$this->getAs('/api/data')->assertJsonStructure([
|
|
'settings',
|
|
'playlists',
|
|
'playlist_folders',
|
|
'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',
|
|
'queue_state' => [
|
|
'songs',
|
|
'current_song',
|
|
'playback_position',
|
|
],
|
|
]);
|
|
}
|
|
}
|