From 7b55569e12ae1a11866a640b1a69883449be8751 Mon Sep 17 00:00:00 2001 From: Zach Ploskey Date: Wed, 21 Mar 2018 10:32:35 -0700 Subject: [PATCH] [contributing] fix `make -C` command for tests This command would not run correctly from the root of the project. Signed-off-by: Zach Ploskey --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 75b4c71e7c..73138b61ca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -105,7 +105,7 @@ Currently all tests are in `jscomp/test` directory and you should either add/mod - Run the tests: `mocha -R list jscomp/test/your_test_file.js` To build libs, tests and run all tests: - `make libs && make -C test all && npm test` + `make libs && make -C jscomp/test all && npm test` - See the coverage: `npm run cover`