1
0
mirror of synced 2026-03-24 12:58:34 +08:00
Files
lunar-javascript/__tests__/I18n.test.js
2023-04-16 18:30:42 +08:00

13 lines
241 B
JavaScript

const {Lunar, I18n} = require('../lunar');
test('test1', () => {
const lunar = Lunar.fromYmd(2023,1,1);
console.log(lunar.toFullString());
I18n.setLanguage('en');
console.log(lunar.toFullString());
I18n.setLanguage('chs');
});