This commit is contained in:
pa
2026-03-10 17:23:31 +09:00
parent 1cbad7fb60
commit 17b582c904
3 changed files with 14 additions and 1 deletions

View File

@@ -22,6 +22,15 @@ vi.mock('../../stores', () => ({
})
}));
vi.mock('../../coordinators/userCoordinator', () => ({
applyCurrentUser: (...args) => mockApplyCurrentUser(...args),
applyUser: (...args) => mockApplyUser(...args)
}));
vi.mock('../../coordinators/worldCoordinator', () => ({
applyWorld: (...args) => mockApplyWorld(...args)
}));
vi.mock('../../queries', () => ({
patchAndRefetchActiveQuery: (...args) =>
mockPatchAndRefetchActiveQuery(...args),

View File

@@ -14,6 +14,10 @@ vi.mock('../../stores/user', () => ({
})
}));
vi.mock('../../coordinators/userCoordinator', () => ({
applyUser: (...args) => mockApplyUser(...args)
}));
vi.mock('../../queries', () => ({
queryClient: {
invalidateQueries: (...args) => mockInvalidateQueries(...args)