mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 22:36:05 +02:00
rename
This commit is contained in:
@@ -154,7 +154,7 @@
|
||||
import { getFriendsSortFunction } from '../../shared/utils';
|
||||
|
||||
import FriendLocationCard from './components/FriendsLocationsCard.vue';
|
||||
import configRepository from '../../service/config.js';
|
||||
import configRepository from '../../services/config.js';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ vi.mock('../../../stores', () => ({
|
||||
})
|
||||
}));
|
||||
|
||||
vi.mock('../../../service/config.js', () => ({
|
||||
vi.mock('../../../services/config.js', () => ({
|
||||
default: {
|
||||
getString: (...args) => mocks.configGetString(...args),
|
||||
getBool: (...args) => mocks.configGetBool(...args),
|
||||
|
||||
@@ -13,7 +13,7 @@ vi.mock('../../../../views/Feed/Feed.vue', () => ({
|
||||
vi.mock('../../../../views/Feed/columns.jsx', () => ({
|
||||
columns: []
|
||||
}));
|
||||
vi.mock('../../../../plugin/router', () => ({
|
||||
vi.mock('../../../../plugins/router', () => ({
|
||||
router: {
|
||||
beforeEach: vi.fn(),
|
||||
push: vi.fn(),
|
||||
@@ -34,10 +34,10 @@ vi.mock('vue-router', async (importOriginal) => {
|
||||
}))
|
||||
};
|
||||
});
|
||||
vi.mock('../../../../plugin/interopApi', () => ({
|
||||
vi.mock('../../../../plugins/interopApi', () => ({
|
||||
initInteropApi: vi.fn()
|
||||
}));
|
||||
vi.mock('../../../../service/database', () => ({
|
||||
vi.mock('../../../../services/database', () => ({
|
||||
database: new Proxy(
|
||||
{},
|
||||
{
|
||||
@@ -48,7 +48,7 @@ vi.mock('../../../../service/database', () => ({
|
||||
}
|
||||
)
|
||||
}));
|
||||
vi.mock('../../../../service/config', () => ({
|
||||
vi.mock('../../../../services/config', () => ({
|
||||
default: {
|
||||
init: vi.fn(),
|
||||
getString: vi
|
||||
@@ -74,10 +74,10 @@ vi.mock('../../../../service/config', () => ({
|
||||
remove: vi.fn()
|
||||
}
|
||||
}));
|
||||
vi.mock('../../../../service/jsonStorage', () => ({
|
||||
vi.mock('../../../../services/jsonStorage', () => ({
|
||||
default: vi.fn()
|
||||
}));
|
||||
vi.mock('../../../../service/watchState', () => ({
|
||||
vi.mock('../../../../services/watchState', () => ({
|
||||
watchState: { isLoggedIn: false }
|
||||
}));
|
||||
vi.mock('../../../../shared/utils/world', () => ({
|
||||
|
||||
Reference in New Issue
Block a user