From 8d81d52cd47cd19167b195489ba642f48a1019fd Mon Sep 17 00:00:00 2001 From: Tyler Henkel Date: Fri, 28 Feb 2014 21:23:35 -0500 Subject: [PATCH] docs(readme): add new grunt command descriptions --- readme.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 23114b884..8466782c2 100644 --- a/readme.md +++ b/readme.md @@ -39,6 +39,11 @@ yo angular-fullstack [app-name] Launch your express server in development mode. ```bash grunt serve +``` + +Launch your express server in `debug-brk` mode with a node-inspector tab. +```bash +grunt serve:debug ``` Launch your express server in production mode, uses the minified/optimized production folder. @@ -230,7 +235,11 @@ Keep in mind this client routing is only for improving the user interface. Make ## Testing -Running `grunt test` will run the unit tests with karma. +Running `grunt test` will run the client and server unit tests with karma and mocha. + +Use `grunt test:server` to only run server tests. + +Use `grunt test:client` to only run client tests. ## Contribute