From 33fc9619b9d9aaf75c9bf71d94d6494a602c254a Mon Sep 17 00:00:00 2001 From: Kyle Robinson Young Date: Wed, 25 Jul 2012 22:43:31 -0700 Subject: [PATCH] Update documented commands needed to run tests --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 085d50038..6cb45ba5d 100644 --- a/README.md +++ b/README.md @@ -181,13 +181,9 @@ Running tests __`nodegit` library code is written adhering to a modified `JSHint`. Run these checks with `make lint` in the project root.__ -__To run unit tests ensure the submodules `nodeunit` and `rimraf` are located in the `vendor/` subdirectory.__ +__To run unit tests ensure to update the submodules with `git submodule update --init` and install the development dependencies nodeunit and rimraf with `npm install`.__ -If they are not, `cd` into the `nodegit` dir and run the following `git` commands to automatically fetch them: - $ cd nodegit - $ git submodule update --init - -Then simply run `make test` in the project root. +Then simply run `npm test` in the project root. Generating documentation ------------------------