about summary refs log tree commit diff
path: root/tests/pages/kontakt.test.js
blob: d99e120db6fd1c2f12962afc7bdb5fa58ba11e55 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { shallowMount } from '@vue/test-utils'
import kontakt from '../../pages/kontakt'

describe('kontakt', () => {
  // Now mount the component and you have the wrapper
  const wrapper = shallowMount(kontakt)

  it('match snapshot', () => {
    expect(wrapper.element).toMatchSnapshot()
  })
})