Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6fc4fdb

Browse files
committed
docs(README): update README.md with new rake tasks
1 parent 6a5f8c0 commit 6fc4fdb

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

README.md

+21-5
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,31 @@ it makes development fun!
1515
* Tutorial: http://docs.angularjs.org/tutorial
1616
* API Docs: http://docs.angularjs.org
1717
* Developer Guide: http://docs.angularjs.org/guide
18+
* Contribution guidelines: http://docs.angularjs.org/misc/contribute
1819

19-
Compiling
20+
Building AngularJS
2021
---------
21-
rake compile
22+
[Once you have your environment setup](http://docs.angularjs.org/misc/contribute) just run:
23+
24+
rake package
25+
2226

2327
Running Tests
2428
-------------
25-
./server.sh # start the server
26-
open http://localhost:9876/capture # capture browser
27-
./test.sh # run all unit tests
29+
Running tests requires installation of [Testacular](http://vojtajina.github.com/testacular):
30+
31+
sudo npm install -g testacular
32+
33+
To execute all unit tests, use:
34+
35+
rake test:unit
36+
37+
To execute end-to-end (e2e) tests, use:
2838

39+
rake package
40+
rake webserver &
41+
rake test:e2e
2942

43+
To learn more about the rake tasks, run `rake -T` and also read our
44+
[contribution guidelines](http://docs.angularjs.org/misc/contribute) and instructions in this
45+
[commit message](https://github.com/angular/angular.js/commit/9d168f058f9c6d7eeae0daa7cb72ea4e02a0003a).

0 commit comments

Comments
 (0)