aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2012-09-17 14:50:07 -0700
committerIgor Minar2012-09-17 14:52:06 -0700
commitccd52abf5d1f8f2fecb66b1d067acd59f9b8452c (patch)
treea7cc1ec04e84787691f9eb143f5194f116cc669e
parent74c574015dfda7f9dd697aa2efe90c96262d3b8c (diff)
downloadangular.js-ccd52abf5d1f8f2fecb66b1d067acd59f9b8452c.tar.bz2
docs(README): update README.md with new rake tasks
-rw-r--r--README.md26
1 files changed, 21 insertions, 5 deletions
diff --git a/README.md b/README.md
index b6a98cad..f29dd2dd 100644
--- a/README.md
+++ b/README.md
@@ -15,15 +15,31 @@ it makes development fun!
* Tutorial: http://docs.angularjs.org/tutorial
* API Docs: http://docs.angularjs.org
* Developer Guide: http://docs.angularjs.org/guide
+* Contribution guidelines: http://docs.angularjs.org/misc/contribute
-Compiling
+Building AngularJS
---------
- rake compile
+[Once you have your environment setup](http://docs.angularjs.org/misc/contribute) just run:
+
+ rake package
+
Running Tests
-------------
- ./server.sh # start the server
- open http://localhost:9876/capture # capture browser
- ./test.sh # run all unit tests
+Running tests requires installation of [Testacular](http://vojtajina.github.com/testacular):
+
+ sudo npm install -g testacular
+
+To execute all unit tests, use:
+
+ rake test:unit
+
+To execute end-to-end (e2e) tests, use:
+ rake package
+ rake webserver &
+ rake test:e2e
+To learn more about the rake tasks, run `rake -T` and also read our
+[contribution guidelines](http://docs.angularjs.org/misc/contribute) and instructions in this
+[commit message](https://github.com/angular/angular.js/commit/9d168f058f9c6d7eeae0daa7cb72ea4e02a0003a).