chore(repo): checkpoint current capakraken implementation state
This commit is contained in:
@@ -19,9 +19,13 @@ vi.mock("@capakraken/staffing", () => ({
|
||||
),
|
||||
}));
|
||||
|
||||
vi.mock("@capakraken/application", () => ({
|
||||
listAssignmentBookings: vi.fn().mockResolvedValue([]),
|
||||
}));
|
||||
vi.mock("@capakraken/application", async (importOriginal) => {
|
||||
const actual = await importOriginal<typeof import("@capakraken/application")>();
|
||||
return {
|
||||
...actual,
|
||||
listAssignmentBookings: vi.fn().mockResolvedValue([]),
|
||||
};
|
||||
});
|
||||
|
||||
const createCaller = createCallerFactory(staffingRouter);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user