fix(server,web/m7-353): forward-fix CI — Mount call + AlbumRef test fixtures

This commit is contained in:
2026-05-04 17:31:27 -04:00
parent 4e3bd46d69
commit 93f54e00a4
7 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ function page<T>(items: T[], total: number, offset = 0, limit = 50): Page<T> {
const album: AlbumRef = {
id: 'al1', title: 'Kind of Blue', sort_title: 'Kind of Blue', artist_id: 'a1', artist_name: 'Miles Davis',
year: 1959, track_count: 5, duration_sec: 2630, cover_url: '/api/albums/al1/cover'
year: 1959, track_count: 5, duration_sec: 2630, cover_url: '/api/albums/al1/cover', cover_art_source: null
};
afterEach(() => {
+1 -1
View File
@@ -56,7 +56,7 @@ function emptyResp(): SearchResponse {
const artist: ArtistRef = { id: 'a1', name: 'Miles Davis', sort_name: 'Miles Davis', album_count: 12, cover_url: '' };
const album: AlbumRef = {
id: 'al1', title: 'Kind of Blue', sort_title: 'Kind of Blue', artist_id: 'a1', artist_name: 'Miles Davis',
year: 1959, track_count: 5, duration_sec: 2630, cover_url: '/api/albums/al1/cover'
year: 1959, track_count: 5, duration_sec: 2630, cover_url: '/api/albums/al1/cover', cover_art_source: null
};
const track: TrackRef = {
id: 't1', title: 'So What',