chore: fix tests

This commit is contained in:
Luan
2024-06-21 20:57:38 -03:00
parent 055fa33403
commit fe953072a2
2 changed files with 6 additions and 2 deletions

View File

@@ -140,6 +140,10 @@ class Playlist {
return this.#page;
}
get items(): ObservedArray<MusicResponsiveListItem> {
return this.contents || observe([]);
}
get has_continuation(): boolean {
return !!this.#continuation;
}