docs(tutorial/index): explain E2E acronym

It was confusing to read "end 2 end" as a numeric two. I kept wondering what two end(s).
Later in the tutorial, the text switched to "End to End" which made more sense than numeric two.
This commit is contained in:
Zorigt Bazarragchaa
2014-05-05 13:49:41 -07:00
committed by Brian Ford
parent b0e985fb67
commit c241a57761

View File

@@ -130,7 +130,7 @@ This command will download the following tools, into the `node_modules` director
- [Bower][bower] - client-side code package manager
- [Http-Server][http-server] - simple local static web server
- [Karma][karma] - unit test runner
- [Protractor][protractor] - end 2 end test runner
- [Protractor][protractor] - end to end (E2E) test runner
Running `npm install` will also automatically use bower to download the Angular framework into the
`app/bower_components` directory.
@@ -146,7 +146,7 @@ tasks that you will need while developing:
- `npm start` : start a local development web-server
- `npm test` : start the Karma unit test runner
- `npm run protractor` : run the Protractor end 2 end tests
- `npm run protractor` : run the Protractor end to end (E2E) tests
- `npm run update-webdriver` : install the drivers needed by Protractor
### Install Helper Tools (optional)