about summary refs log tree commit diff
path: root/test/Logo.spec.js
blob: 1628640ad2a813e19578a38eeb38ce58a8178693 (plain)
1
2
3
4
5
6
7
8
9
import { mount } from '@vue/test-utils'
import Logo from '@/components/Logo.vue'

describe('Logo', () => {
  test('is a Vue instance', () => {
    const wrapper = mount(Logo)
    expect(wrapper.isVueInstance()).toBeTruthy()
  })
})