6
6
# E2E Testing
7
7
8
8
<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
10
10
[Angular Scenario Runner](http://code.angularjs.org/1.2.16/docs/guide/e2e-testing). That tool
11
11
is now in maintenance mode.
12
12
</div>
13
13
14
14
As applications grow in size and complexity, it becomes unrealistic to rely on manual testing to
15
15
verify the correctness of new features, catch bugs and notice regressions. End to end tests
16
16
are 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
18
18
these problems.
19
19
20
20
We have built [Protractor](https://github.com/angular/protractor), an end
@@ -23,7 +23,7 @@ Angular application.
23
23
24
24
## Using Protractor
25
25
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
27
27
written in JavaScript and run with node. Protractor uses [WebDriver](https://code.google.com/p/selenium/wiki/GettingStarted)
28
28
to control browsers and simulate user actions.
29
29
@@ -76,8 +76,8 @@ filter the list of items.
76
76
77
77
## Example
78
78
See 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).
81
81
82
82
## Caveats
83
83
0 commit comments