UNPKG

vue-cli-plugin-element-zkml

Version:

Quickly build a backend system with vue-cli and element-ui in seconds.

10 lines (8 loc) 278 B
import { shallowMount } from '@vue/test-utils' import AppFooter from '@/components/layout/AppFooter.vue' describe('AppFooter.vue', () => { it('render app footer', () => { const wrapper = shallowMount(AppFooter, {}) expect(wrapper.text()).toMatch('Copyright') }) })