fix(tests): correct API mock path in EPG test

This commit is contained in:
mwhit 2026-05-17 06:24:46 +00:00
parent 60a61e78e3
commit 96f501b0fc

View file

@ -6,7 +6,7 @@ global.fetch = vi.fn().mockResolvedValue({
json: () => Promise.resolve({}),
});
vi.mock('../../api.js', () => ({
vi.mock('../../../api.js', () => ({
default: {
getSDLineups: vi.fn().mockResolvedValue([]),
addSDLineup: vi.fn().mockResolvedValue({ success: true }),