UNPKG

create-vue

Version:

🛠️ The recommended way to start a Vite-powered Vue project

13 lines (10 loc) 325 B
import HelloWorld from '../HelloWorld.vue' describe('HelloWorld', () => { it('playground', () => { cy.mount(HelloWorld, { props: { msg: 'Hello Cypress' } }) }) it('renders properly', () => { cy.mount(HelloWorld, { props: { msg: 'Hello Cypress' } }) cy.get('h1').should('contain', 'Hello Cypress') }) })