From 3a0dfacb312ca398292f1eaff3048c0e33eff695 Mon Sep 17 00:00:00 2001 From: Andrew Van Slaars Date: Wed, 1 Nov 2017 14:02:29 -0400 Subject: [PATCH] Numbered videos and updated summary title to whats covered --- source/tutorials/test-a-react-todo-app/introduction.md | 4 ++-- source/tutorials/test-a-react-todo-app/project-setup.md | 2 +- source/tutorials/test-a-react-todo-app/testing-inputs.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/tutorials/test-a-react-todo-app/introduction.md b/source/tutorials/test-a-react-todo-app/introduction.md index de8d5ee91a..5b25c6a3a4 100644 --- a/source/tutorials/test-a-react-todo-app/introduction.md +++ b/source/tutorials/test-a-react-todo-app/introduction.md @@ -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 %} -:--| diff --git a/source/tutorials/test-a-react-todo-app/project-setup.md b/source/tutorials/test-a-react-todo-app/project-setup.md index f5eb1c04a0..00bcce56b7 100644 --- a/source/tutorials/test-a-react-todo-app/project-setup.md +++ b/source/tutorials/test-a-react-todo-app/project-setup.md @@ -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. diff --git a/source/tutorials/test-a-react-todo-app/testing-inputs.md b/source/tutorials/test-a-react-todo-app/testing-inputs.md index d34d3c1c74..e5aca35100 100644 --- a/source/tutorials/test-a-react-todo-app/testing-inputs.md +++ b/source/tutorials/test-a-react-todo-app/testing-inputs.md @@ -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.