mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-16 02:11:48 +08:00
81e6c377ba
* fix: provide root locale * refactor(locale): refactor locale * fix: tests * revert: play
78 lines
1.8 KiB
TypeScript
78 lines
1.8 KiB
TypeScript
import { h, nextTick, computed } from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import Chinese from '@element-plus/locale/lang/zh-cn'
|
|
import English from '@element-plus/locale/lang/en'
|
|
import { useLocale, buildTranslator } from '../use-locale'
|
|
import { provideGlobalConfig } from '..'
|
|
|
|
const TestComp = {
|
|
setup() {
|
|
const { t } = useLocale()
|
|
return () => {
|
|
return h(
|
|
'div',
|
|
{ class: 'locale-manifest' },
|
|
t('el.popconfirm.confirmButtonText')
|
|
)
|
|
}
|
|
},
|
|
}
|
|
|
|
describe('use-locale', () => {
|
|
let wrapper
|
|
beforeEach(() => {
|
|
wrapper = mount(
|
|
{
|
|
props: {
|
|
locale: Object,
|
|
},
|
|
components: {
|
|
'el-test': TestComp,
|
|
},
|
|
setup(props, { slots }) {
|
|
provideGlobalConfig(computed(() => ({ locale: props.locale })))
|
|
return () => slots.default()
|
|
},
|
|
},
|
|
{
|
|
props: {
|
|
locale: Chinese,
|
|
},
|
|
slots: {
|
|
default: () => h(TestComp),
|
|
},
|
|
}
|
|
)
|
|
})
|
|
|
|
afterEach(() => {
|
|
wrapper.unmount()
|
|
})
|
|
|
|
it('should provide locale correctly', async () => {
|
|
await nextTick()
|
|
expect(wrapper.find('.locale-manifest').text()).toBe(
|
|
Chinese.el.popconfirm.confirmButtonText
|
|
)
|
|
})
|
|
|
|
it('should update the text reactively', async () => {
|
|
await nextTick()
|
|
expect(wrapper.find('.locale-manifest').text()).toBe(
|
|
Chinese.el.popconfirm.confirmButtonText
|
|
)
|
|
await wrapper.setProps({
|
|
locale: English,
|
|
})
|
|
|
|
expect(wrapper.find('.locale-manifest').text()).toBe(
|
|
English.el.popconfirm.confirmButtonText
|
|
)
|
|
})
|
|
|
|
test('return key name if not defined', () => {
|
|
const t = buildTranslator(English)
|
|
expect(t('el.popconfirm.someThing')).toBe('el.popconfirm.someThing')
|
|
})
|
|
})
|