All Projects → cypress-io → Testing Workshop Cypress

cypress-io / Testing Workshop Cypress

End-to-end testing workshop with Cypress

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Testing Workshop Cypress

robotic assembly workshop
Materials for the Robotic Assembly workshop using COMPAS framework
Stars: ✭ 18 (-94.41%)
Mutual labels:  workshop
service-worker-exercises
Get started with Service Worker
Stars: ✭ 37 (-88.51%)
Mutual labels:  workshop
Kubernetes Java Sample
Kubernetes Hands-on Workshop
Stars: ✭ 254 (-21.12%)
Mutual labels:  workshop
kubernetes-workshop
Kubernetes Workshop
Stars: ✭ 35 (-89.13%)
Mutual labels:  workshop
gmodws
GMPublish functionality without graphical steam
Stars: ✭ 23 (-92.86%)
Mutual labels:  workshop
GenomeAnalysisModule
Welcome to the website and github repository for the Genome Analysis Module. This website will guide the learning experience for trainees in the UBC MSc Genetic Counselling Training Program, as they embark on a journey to learn about analyzing genomes.
Stars: ✭ 19 (-94.1%)
Mutual labels:  workshop
react-query-blog-demo
An example repo I used to teach a React Query workshop
Stars: ✭ 82 (-74.53%)
Mutual labels:  workshop
Choo Handbook
🚂✋📖 - Learn the choo framework through a set of exercises
Stars: ✭ 266 (-17.39%)
Mutual labels:  workshop
Kebab
Little ML'er in F#
Stars: ✭ 15 (-95.34%)
Mutual labels:  workshop
SwiftAveiro
Skeleton project for my Swift Aveiro workshop "Everyone is an API designer"
Stars: ✭ 15 (-95.34%)
Mutual labels:  workshop
vim-workshop
My thorough introduction to Vim
Stars: ✭ 30 (-90.68%)
Mutual labels:  workshop
coldbox-zero-to-hero
ColdBox 120: From Zero to Hero Training
Stars: ✭ 16 (-95.03%)
Mutual labels:  workshop
rxjava-workshop
1 day RxJava 2 hands-on workshop
Stars: ✭ 66 (-79.5%)
Mutual labels:  workshop
graphql-workshop
Hands on workshop about GraphQL with React and Apollo 🚀
Stars: ✭ 43 (-86.65%)
Mutual labels:  workshop
Pwa Fundamentals
👨‍🏫 Mike & Steve's Progressive Web Fundamentals Course
Stars: ✭ 256 (-20.5%)
Mutual labels:  workshop
workshop-css-grid
Workshop made for freecodecamp meetup
Stars: ✭ 12 (-96.27%)
Mutual labels:  workshop
pony-workshop
Material for a workshop for learning about the Pony programming language
Stars: ✭ 91 (-71.74%)
Mutual labels:  workshop
Learn You Php
🏆 Learn You PHP! - An introduction to PHP's core features: i/o, http, arrays, exceptions and so on.
Stars: ✭ 304 (-5.59%)
Mutual labels:  workshop
Learn Generators
JavaScript ES(6|2015) generators workshopper. Learn in practice. 🤘
Stars: ✭ 257 (-20.19%)
Mutual labels:  workshop
NSBudapestMeetup
Place for talk proposals @NSBudapest meetup, and archives of past events
Stars: ✭ 27 (-91.61%)
Mutual labels:  workshop

testing-workshop-cypress

cypress version CircleCI Build status GH Actions renovate-app badge

A full day testing workshop complete with application, exercise tests and speaker slides for Cypress.io

Requirements ⚙️

In order to get the code and install dependencies

git clone [email protected]:cypress-io/testing-workshop-cypress.git
cd testing-workshop-cypress
npm install

If necessary, install dependencies inside TodoMVC folder

cd todomvc
npm install

Quick check ✅

You can test the installation by starting TodoMVC in the first terminal window

cd todomvc
npm start

and you should see in the terminal

> json-server --static . data.json --middlewares ./node_modules/json-server-reset


  \{^_^}/ hi!

  Loading data.json
  Loading ./node_modules/json-server-reset
  Done

  Resources
  http://localhost:3000/todos

  Home
  http://localhost:3000

Note for Windows users: if npm start throws an error, it is probably due to cd todomvc; ... first command in the npm startscript. In this case change the working folder to "todomvc" and run npm start from there.

From the second terminal window you should be able to open Cypress in the root of the project with

$ npm run cy:open

> [email protected] cy:open /git/testing-workshop-cypress
> cypress open

Tip

You can use the installed start-server-and-test utility to start the app, open Cypress and then shutdown the app when you exit Cypress.

$ npm run dev

Application 💾

Vue.js + Vuex + REST server application that we are going to test is in the folder todomvc. This application and its full testing is described in this blog post. The application should run fine without network access.

Slides 🖥

See the presentation at https://testing-workshop-cypress.netlify.app/. Every section of the presentation has a subfolder in the slides folder with a Markdown file. The Markdown is rendered into HTML using Vite and Reveal.js combination. You can open the presentation by clicking on "link" in the table below.

Content 🗂

Beginner

topic folder contents slides
🔗 Introduction, TodoMVC application todomvc intro.md link
🔗 Loading page 00-start 00-start link
🔗 cypress open vs cypress run 01-basic 01-basic link
🔗 Adding items test, cypress.json file 02-adding-items 02-adding-items link
🔗 Selector Playground 03-selector-playground 03-selector-playground link
🔗 Reset database using cy.request 04-reset-state 04-reset-state link
🔗 Spy and stub XHR requests, fixtures 05-xhr 05-xhr link
🔗 Access application code and data 06-app-data-store 06-app-data-store link

Intermediate

topic folder contents slides
🔗 Setting up E2E tests on CI 07-ci 07-ci link
🔗 Setting up Cypress Dashboard 07-ci 08-dashboard link
🔗 Test reporters - 09-reporters link
🔗 Configuration - 10-configuration link
🔗 Retry-ability 11-retry-ability 11-retry-ability link
🔗 Custom commands 12-custom-commands 12-custom-commands link

Advanced

topic folder contents slides
🔗 Page Objects vs App Actions 13-app-actions 13-app-actions link
🔗 Fixtures 14-fixtures 14-fixtures link
🔗 Debugging 02-adding-items/demo.js 15-debugging link
🔗 Preprocessors 16-preprocessors 16-preprocessors link
🔗 Component testing 17-component-testing 17-component-testing link
🔗 Backend code 18-backend 18-backend link
🔗 Code coverage 19-code-coverage 19-code-coverage link
The end - end link

For speakers 🎙

Netlify Status

This workshop can take all day, but you can pick the sections you are interested in teaching at will and customize it into any time duration. Everyone is coding for the most part, except for CI and the Cypress Dashboard sections, where the usage was shown via slides and actual sites.

During the workshop, keep the todomvc app running in one shell, while each section 01-basic, 02-..., 03-... etc. has its own Cypress and specs subfolders cypress/integration/.... Usually a spec has several tests with placeholder comments. The workshop attendees are expected to make the tests pass using the knowledge from the slides and hints (and Cypress documentation). Note that most folders have a prepared spec.js file and an answer.js file. The answer.js file is ignored by Cypress using a setting in cypress.json.

The only exception is the folder 00-start. This is a folder for students to see how Cypress scaffolds example specs when you open Cypress for the very first time. In this folder students should execute...

cd 00-start
npm run cy:open

...and see the list of created example specs.

The slides are generated using Reveal.js from Markdown sources in the slides folder. You can show the slides locally by running

npm run slides:dev

The slides are deployed to Netlify automatically, see https://testing-workshop-cypress.netlify.app/

Additional information 🗃

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].