Files
minstrel/web/src/lib/api/home.test.ts
T
2026-05-01 20:13:49 -04:00

33 lines
875 B
TypeScript

import { afterEach, describe, expect, test, vi } from 'vitest';
vi.mock('./client', () => ({
api: { get: vi.fn() }
}));
import { listHome } from './home';
import { qk } from './queries';
import { api } from './client';
import type { HomePayload } from './types';
afterEach(() => vi.clearAllMocks());
describe('home client', () => {
test('listHome hits /api/home', async () => {
const fixture: HomePayload = {
recently_added_albums: [],
rediscover_albums: [],
rediscover_artists: [],
most_played_tracks: [],
last_played_artists: []
};
(api.get as ReturnType<typeof vi.fn>).mockResolvedValueOnce(fixture);
const got = await listHome();
expect(api.get).toHaveBeenCalledWith('/api/home');
expect(got).toEqual(fixture);
});
test('qk.home key is stable', () => {
expect(qk.home()).toEqual(['home']);
});
});