// import { mount } from '@cypress/vue'
// Currently error: Vue is not defined.

xdescribe('Vue TODO: make this work', () => {
  it('mounts', () => {
    const mount = (comp) => {}
    const App = {
      template: `<div>Hello Vue</div>`,
    }

    mount(App)
  })
})
