刮刮前端
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.
 
 
 
 

13 lines
315 B

describe('locales', () => {
it('default', () => {
const i18n = require('../lib/index')
expect(i18n.setLocale('fr')).toBe('en')
})
it('fallbacks', () => {
const i18n = require('../lib/index')
expect(i18n.setLocale('zh')).toBe('zh_CN')
expect(i18n.setLocale('zh_SG')).toBe('zh_CN')
})
})