Union of hero bots.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
285 B

/**
* 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);
});