Skip to content

Commit b6ddd60

Browse files
committed
docs(guide/E2E Testing): Added '-' to 'end-to-end'
E2E Testing is generally spelled out as End-to-end testing in the community, but is referred to as end to end testing in the documentation. I have updated all instances of 'end to end' to 'end-to-end'. This should align the documentation with what's generally accepted in the community. CHANGES angular#1: In the past, end-to-end testing could be done with a... CHANGES angular#2: End-to-end tests are made to find these problems. CHANGES angular#3: Protractor is a [Node.js](http://nodejs.org) program, and runs end-to-end tests that are... CHANGES angular#4: (For example, {@link $http $http} has an end-to-end test in the example under the `protractor.js` tag)
1 parent 69f69db commit b6ddd60

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/content/guide/e2e-testing.ngdoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
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
1111
is now in maintenance mode.
1212
</div>
1313

1414
As applications grow in size and complexity, it becomes unrealistic to rely on manual testing to
1515
verify the correctness of new features, catch bugs and notice regressions. Unit tests
1616
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
1818
these problems.
1919

2020
We 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
2727
written in JavaScript and run with node. Protractor uses [WebDriver](https://code.google.com/p/selenium/wiki/GettingStarted)
2828
to control browsers and simulate user actions.
2929

@@ -77,7 +77,7 @@ filter the list of items.
7777
## Example
7878
See the [angular-seed](https://github.com/angular/angular-seed) project for more examples, or look
7979
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).
80+
has an end-to-end test in the example under the `protractor.js` tag).
8181

8282
## Caveats
8383

0 commit comments

Comments
 (0)