aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBrian Ford2014-03-03 12:33:56 -0800
committerBrian Ford2014-03-03 12:33:56 -0800
commitc29d21f4cdc969991771d1e75c3a799eca7bf41a (patch)
tree5761d10535b0f4526eaa90e5fd45106c9dfcd13a /docs
parent7a19a80af205840b259957f5b233a9acec143137 (diff)
downloadangular.js-c29d21f4cdc969991771d1e75c3a799eca7bf41a.tar.bz2
docs(guide/e2e-testing): rename and fix formatting
Diffstat (limited to 'docs')
-rw-r--r--docs/content/guide/e2e-testing.ngdoc (renamed from docs/content/guide/dev_guide.e2e-testing.ngdoc)4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/dev_guide.e2e-testing.ngdoc b/docs/content/guide/e2e-testing.ngdoc
index b3d3fa94..60675922 100644
--- a/docs/content/guide/dev_guide.e2e-testing.ngdoc
+++ b/docs/content/guide/e2e-testing.ngdoc
@@ -15,7 +15,7 @@ To solve this problem, we have built an Angular Scenario Runner which simulates
that will help you verify the health of your Angular application.
# Overview
-You will write scenario tests in JavaScript, which describe how your application should behave,
+You write scenario tests in JavaScript. These tests describe how your application should behave
given a certain interaction in a specific state. A scenario is comprised of one or more `it` blocks
(you can think of these as the requirements of your application), which in turn are made of
**commands** and **expectations**. Commands tell the Runner to do something with the application
@@ -310,4 +310,4 @@ element('.btn-danger').click();
# Caveats
-ngScenario does not work with apps that manually bootstrap using angular.bootstrap. You must use the ng-app directive.
+`ngScenario` does not work with apps that manually bootstrap using `angular.bootstrap`. You must use the `ng-app` directive.