klaufel / ipd-2020-hello-world-cypress

"Hello world" or your first test with Cypress, easy peasy! For celebrate the International Programmers Day 2020!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

International Programmers Day 2020 πŸ₯³

Hello world with Cypress 🌲

"Hello world" or your first test with Cypress, easy peasy!

Example β€’ Getting started

First test with Cypress

πŸ”₯ Example

describe("Hello world with Cypress 🌲", () => {
  it("type in input ", () => {
    cy.visit("/");

    cy.get(".input")
      .type("Happy #InternationalProgrammersDay! πŸŽ‰")
      .should("have.value", "Happy #InternationalProgrammersDay! πŸŽ‰");
  });
});

View /cypress/integration/

πŸš€ Getting started!

Writting your first test: https://docs.cypress.io/es/guides/getting-started/writing-your-first-test.html

About

"Hello world" or your first test with Cypress, easy peasy! For celebrate the International Programmers Day 2020!


Languages

Language:CSS 48.9%Language:HTML 28.6%Language:JavaScript 22.5%