element-plus/packages/components/icon/__tests__/icon.spec.ts

20 lines
435 B
TypeScript
Raw Normal View History

2020-08-04 11:09:19 +08:00
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,
2020-08-04 11:09:19 +08:00
},
})
expect(wrapper.element.getAttribute('style')).toContain(
`--color: #000000`,
)
expect(wrapper.element.getAttribute('style')).toContain(
`--font-size: 18px`,
)
2020-08-04 11:09:19 +08:00
})
})