mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
|
import { vi } from 'vitest';
|
||
|
|
||
|
// 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: {},
|
||
|
},
|
||
|
};
|
||
|
});
|