UNPKG
@revoloo/cypress6
Version:
latest (1.0.0)
1.0.0
Cypress.io end to end testing tool
github.com/cypress-io/cypress
cypress-io/cypress
@revoloo/cypress6
/
npm
/
rollup-dev-server
/
cypress
/
components
/
hello-vue.spec.ts
14 lines
(11 loc)
•
269 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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
) }) })