66# E2E Testing
77
88<div class="alert alert-danger">
9- **Note:** In the past, end to end testing could be done with a deprecated tool called
9+ **Note:** In the past, end-to- end testing could be done with a deprecated tool called
1010[Angular Scenario Runner](http://code.angularjs.org/1.2.16/docs/guide/e2e-testing). That tool
1111is now in maintenance mode.
1212</div>
1313
1414As applications grow in size and complexity, it becomes unrealistic to rely on manual testing to
1515verify the correctness of new features, catch bugs and notice regressions. End to end tests
1616are the first line of defense for catching bugs, but sometimes issues come up with integration
17- between components which can't be captured in a unit test. End to end tests are made to find
17+ between components which can't be captured in a unit test. End-to- end tests are made to find
1818these problems.
1919
2020We have built [Protractor](https://github.com/angular/protractor), an end
@@ -23,7 +23,7 @@ Angular application.
2323
2424## Using Protractor
2525
26- Protractor is a [Node.js](http://nodejs.org) program, and runs end to end tests that are also
26+ Protractor is a [Node.js](http://nodejs.org) program, and runs end-to- end tests that are also
2727written in JavaScript and run with node. Protractor uses [WebDriver](https://code.google.com/p/selenium/wiki/GettingStarted)
2828to control browsers and simulate user actions.
2929
@@ -76,8 +76,8 @@ filter the list of items.
7676
7777## Example
7878See the [angular-seed](https://github.com/angular/angular-seed) project for more examples, or look
79- at the embedded examples in the Angular documentation (For example, [ $http](http://docs.angularjs.org/api/ng/service/ $http)
80- has an end to end test in the example under the `protractor.js` tag).
79+ at the embedded examples in the Angular documentation (For example, {@link $http $http}
80+ has an end-to- end test in the example under the `protractor.js` tag).
8181
8282## Caveats
8383
0 commit comments