tests passing

This commit is contained in:
DaKheera47 2026-01-26 11:01:42 +00:00
parent 8acb5dbc27
commit 86c8e76bb1

View File

@ -149,7 +149,9 @@ vi.mock("./resumeProjects.js", () => ({
// Mock the RxResumeClient // Mock the RxResumeClient
vi.mock("./rxresume-client.js", () => ({ vi.mock("./rxresume-client.js", () => ({
RxResumeClient: vi.fn().mockImplementation(function() { return mockRxResumeClient; }), RxResumeClient: vi.fn().mockImplementation(function (this: any) {
return mockRxResumeClient;
}),
})); }));
// Mock stream pipeline for downloading PDF // Mock stream pipeline for downloading PDF