Skip to content

cypress-io/cypress-realworld-testing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c3063cd · Dec 17, 2024
Mar 1, 2023
Jul 26, 2022
Aug 10, 2021
May 11, 2023
May 12, 2023
Dec 2, 2024
Jul 26, 2022
Dec 28, 2022
Mar 8, 2022
Jun 27, 2022
Apr 7, 2023
May 11, 2023
Apr 20, 2022
May 11, 2023
Jun 27, 2022
Dec 1, 2021
Mar 3, 2022
Aug 2, 2021
Nov 3, 2021
Aug 2, 2022
Aug 2, 2022
Aug 2, 2021
Aug 2, 2021
Mar 8, 2022
May 9, 2023
Jun 2, 2022
Mar 4, 2022
Nov 1, 2021
Jul 13, 2022
Dec 17, 2024
Jul 28, 2021
Aug 27, 2021
Feb 25, 2022
Mar 3, 2022
Dec 17, 2024

Repository files navigation

Real World Testing with Cypress

Real World Testing with Cypress is a free and open source testing curriculum built with Next.js by the team at Cypress. Start learning today at learn.cypress.io

Screen Shot 2022-03-23 at 11 44 30 AM

Installation

git clone https://github.com/cypress-io/cypress-realworld-testing.git

cd cypress-realworld-testing

yarn install

yarn dev # starts dev server

Documentation

Documentation lives inside of the /docs folder and is powered by VuePress. The best way to view the docs is by running the following command.

yarn docs:dev

This will spin up a local server and serve the docs site.

Unit Tests

The units tests are powered by Mocha and can be run with the following command.

yarn test:unit

Cypress E2E Tests

Cypress tests can be run via the Cypress test runner and UI with the following command.

yarn cypress:open

The same tests can be run in headless mode, as they would be in CI with the following command.

yarn cypress:run