/// <reference types="cypress" />importRepeaterfrom'./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')
})
})