element-plus/packages/avatar/__tests__/avatar.spec.ts

16 lines
319 B
TypeScript
Raw Normal View History

2020-08-02 18:27:46 +08:00
import { mount } from '@vue/test-utils'
import Avatar from '../src/index.vue'
const AXIOM = 'Rem is the best girl'
describe('Avatar.vue', () => {
test('render test', () => {
const wrapper = mount(Avatar, {
slots: {
default: AXIOM,
},
})
expect(wrapper.text()).toEqual(AXIOM)
})
})