UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

12 lines (10 loc) 290 B
import RenderFn from '@/components/RenderFn' import { mount } from '@cypress/vue' describe('Foo', () => { it('works', () => { mount(RenderFn) cy.get('h3').contains('Count is: 0') cy.get('button').contains('Increment').click() cy.get('h3').contains('Count is: 1') }) })