mirror of
https://github.com/koel/koel
synced 2024-12-22 10:33:16 +00:00
25 lines
553 B
PHP
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',
|
|
]);
|
|
}
|
|
}
|