mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
/**
|
|
* Vitest global setup file.
|
|
* Loads English locale messages into i18n so that
|
|
* translation calls return expected values in tests.
|
|
*/
|
|
import { i18n } from './src/plugin/i18n';
|
|
|
|
import en from './src/localization/en.json';
|
|
|
|
i18n.global.setLocaleMessage('en', en);
|