mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-27 03:01:14 +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
16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import Icon from '../src/index.vue'
|
|
|
|
describe('Icon.vue', () => {
|
|
test('render', () => {
|
|
const wrapper = mount(Icon, {
|
|
props: {
|
|
color: '#000000',
|
|
size: 18,
|
|
},
|
|
})
|
|
expect(wrapper.element.getAttribute('style')).toContain(`--color: #000000`)
|
|
expect(wrapper.element.getAttribute('style')).toContain(`--font-size: 18px`)
|
|
})
|
|
})
|