/** * i18n测试用例 */ import test from 'node:test'; import assert from 'node:assert'; import common from '../common.mjs'; import I18N from '../i18n.mjs'; test('Init test', async (t) => { const i18n = new I18N(); const res = await i18n.init(); assert.ok(res); });