koel/tests/Feature/V6/DataTest.php

26 lines
553 B
PHP
Raw Normal View History

2022-07-26 20:27:32 +00:00
<?php
namespace Tests\Feature\V6;
class DataTest extends TestCase
{
public function testIndex(): void
{
2022-07-27 08:49:33 +00:00
$this->getAs('/api/data')->assertJsonStructure([
2022-07-26 20:27:32 +00:00
'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',
]);
}
}