example.cy.ts 171 B

12345678
  1. // https://on.cypress.io/api
  2. describe('My First Test', () => {
  3. it('visits the app root url', () => {
  4. cy.visit('/');
  5. cy.contains('h1', 'You did it!');
  6. });
  7. });