mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
70 lines
1.5 KiB
TypeScript
70 lines
1.5 KiB
TypeScript
import { inject, h, nextTick } 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, useLocaleProps, LocaleInjectionKey } from '../use-locale'
|
|
|
|
const TestComp = {
|
|
setup() {
|
|
const { t } = inject(LocaleInjectionKey)
|
|
return () => {
|
|
return h(
|
|
'div',
|
|
{ class: 'locale-manifest' },
|
|
t('el.popconfirm.confirmButtonText')
|
|
)
|
|
}
|
|
},
|
|
}
|
|
|
|
describe('use-locale', () => {
|
|
let wrapper
|
|
beforeEach(() => {
|
|
wrapper = mount(
|
|
{
|
|
props: useLocaleProps,
|
|
components: {
|
|
'el-test': TestComp,
|
|
},
|
|
setup(_, { slots }) {
|
|
useLocale()
|
|
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
|
|
)
|
|
})
|
|
})
|