UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

13 lines (10 loc) 301 B
/// <reference types="cypress" /> import Repeater from './Repeater.vue' import { mount } from '@cypress/vue' describe('Repeater', () => { it('User can type and see output on the screen', () => { mount(Repeater) cy.get('#item').type('Cypress') cy.contains('You typed: Cypress') }) })