2023-03-09 12:48:39 +09:00
|
|
|
import { vi } from 'vitest';
|
2023-03-19 16:59:31 +09:00
|
|
|
import createFetchMock from 'vitest-fetch-mock';
|
|
|
|
|
|
|
|
const fetchMocker = createFetchMock(vi);
|
|
|
|
fetchMocker.enableMocks();
|
2023-03-09 12:48:39 +09:00
|
|
|
|
|
|
|
// Set i18n
|
|
|
|
import locales from '../../../locales';
|
|
|
|
import { updateI18n } from '@/i18n';
|
|
|
|
updateI18n(locales['en-US']);
|
|
|
|
|
|
|
|
// XXX: misskey-js panics if WebSocket is not defined
|
|
|
|
vi.stubGlobal('WebSocket', class WebSocket extends EventTarget { static CLOSING = 2; });
|
|
|
|
|
|
|
|
// XXX: defaultStore somehow becomes undefined in vitest?
|
|
|
|
vi.mock('@/store.js', () => {
|
|
|
|
return {
|
|
|
|
defaultStore: {
|
|
|
|
state: {},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|