You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 line
206 B

  1. // https://docs.cypress.io/api/introduction/api.html
  2. describe('My First Test', () => {
  3. it('Visits the app root url', () => {
  4. cy.visit('/')
  5. cy.contains('h1', 'Welcome to Your Vue.js App')
  6. })
  7. })