element-plus/packages/avatar/__tests__/avatar.spec.ts
2020-08-03 15:00:05 +08:00

16 lines
319 B
TypeScript

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)
})
})