Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Numbered videos and updated summary title to whats covered #198

Merged
merged 1 commit into from
Nov 1, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/tutorials/test-a-react-todo-app/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ We have a lot of ground to cover, so let's get started!

| Tutorial | Length|
| -- | -- |
| {% url "Project setup" project-setup %} | {% fa fa-video-camera %} 3:52 |
| {% url "Testing inputs" testing-inputs %} | {% fa fa-video-camera %} 7:17 |
| 1. {% url "Project setup" project-setup %} | {% fa fa-video-camera %} 3:52 |
| 2. {% url "Testing inputs" testing-inputs %} | {% fa fa-video-camera %} 7:17 |
| More tutorials to come! | {% fa fa-video-camera %} -:--|
2 changes: 1 addition & 1 deletion source/tutorials/test-a-react-todo-app/project-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ containerClass: tutorial

{% video 240554515 %}

## What you'll learn
## What's covered

We will start by cloning a starter {% url "repository" https://github.com/cypress-io/cypress-tutorial-build-todo-starter %}. This repo already has the build and server configuration handled. We will take a look at the project's [`npm`](https://www.npmjs.com/) dependencies and scripts, then jump right into getting Cypress up and running.
2 changes: 1 addition & 1 deletion source/tutorials/test-a-react-todo-app/testing-inputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ containerClass: tutorial

{% video 240554808 %}

## What you'll learn
## What's covered

We will work through creating our first real test and implementing the feature under test as we go. We will see how to find and interact with elements on the page and how to make assertions about their behavior. We will also look into some best practices like using `beforeEach` and defining our application's {% url "`baseUrl`" configuration#Global %} to remove duplicated code.