UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

12 lines (10 loc) 265 B
import { mount } from '@cypress/vue' import HelloWorld from './HelloWorld.vue' describe('HelloWorld', () => { it('shows links', () => { // @ts-ignore mount(HelloWorld) // there are a lot of links cy.get('li').should('have.length.gt', 10) }) })