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)

View File

@@ -15,7 +15,7 @@ import {
ChevronRight
} from 'lucide-vue-next';
import { formatDateFilter, statusClass, timeToText } from '../../shared/utils';
import { i18n } from '../../plugin';
import { i18n } from '../../plugin/i18n';
import { useGalleryStore } from '../../stores';
import { showUserDialog } from '../../coordinators/userCoordinator';