@involvex/auto-vue
Version:
Full automated Vue Setup with 3 git branches: main, dev, github pages
13 lines (10 loc) • 325 B
JavaScript
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')
})
})